Send Email Bug!!
See original GitHub issueI found an assembly data bug in the construction of send mail. Please see the code and the screenshot. The code in the screenshot should be commented to always get the test address in the configuration. All QueueMessageAsync methods do not take From and should read the sender of the configuration file.
The following fixes the code
return QueueMessageAsync(new MailMessage {
From = _appOptions.EmailOptions.SmtpFrom,
To = invite.EmailAddress,
Subject = subject,
Body = body
}, template);
In addition, there will be problems in reading the email configuration, the general email address will be xx@xx.com. Converting to a Uri will fail
Issue Analytics
- State:
- Created 3 months ago
- Comments:13 (5 by maintainers)
Top Results From Across the Web
If you can't send email on your iPhone or iPad
If you can't send email from the Mail app on your iPhone or iPad, there are a few things you can try.
Read more >Cannot send emails: How to fix email sending issues
Cannot send emails: How to fix email sending issues · Check your internet connection. · Check your SMTP server details. · Verify all...
Read more >Send Email action isn't working - Glide Community
Describe the bug: Send Email action is notifying an error each time we try to run it, and it isn't sending any emails....
Read more >Cannot send email for 3 days - Mail
The server name is not valid, neither is port 2525. Maybe a typing error? Go to Menu > Accounts and click on the...
Read more >“Email failed to send” – understanding the error message?
1. You're not connected to the internet · 2. You've set up your email client with the wrong SMTP parameters · 3. Your...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Of course, this has solved my own problem. But there are still a lot of windows environment can not get rid of, which is very frustrating. With best wishes.
Any chance you’d be willing to update the self hosting guide with any email settings that should be set. Also, can we close this?