You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the default from email address is hardcoded to be "[email protected]". Due to security reasons, many SMTP servers either disallow SMTP relay or require sender identity verification. A potential solution might be to expose the option of from email address in application.conf, such as:
mail {
...
from = (email address here)
...
}
And use this email as the from address. Similarly, for new user registration emails sent to administrators, instead of using registered user's email as the from address, use this same from address in application.conf, and provide registered user's email address in the body of the email.
The text was updated successfully, but these errors were encountered:
I noticed that the default from email address is hardcoded to be "[email protected]". Due to security reasons, many SMTP servers either disallow SMTP relay or require sender identity verification. A potential solution might be to expose the option of from email address in
application.conf
, such as:And use this email as the from address. Similarly, for new user registration emails sent to administrators, instead of using registered user's email as the from address, use this same from address in
application.conf
, and provide registered user's email address in the body of the email.The text was updated successfully, but these errors were encountered: