-
-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove hardcoded [email protected] address for amazon ses verification mail #381
base: main
Are you sure you want to change the base?
Conversation
Thanks for taking a look at this! However, I don’t think this is the right way to go about this. If you want to be able to customize the verification From email, that should happen in the settings for the Shared Sender. It doesn't really make sense to tie it to the system mailer. |
i just tried to make it somehow work, adding this to the settings of the shared sender seems like a good idea, |
The system mailer (which is used to send things like the registration confirmation email or password reset emails) is configured with environment variables because there can only be one system mailer. Shared Senders, on the other hand, are configured through the interface. A single instance of Keila could have multiple shared senders. Because of this, everything related to them, should be configured in the interface and not with an environment variable - just like all other properties of the shared sender (like server, password, etc). |
Oh, so you're trying to just set up a regular SES Sender, not using a Shared Sender? Edit: Hmm … but that doesn’t make sense since if you're just setting up a regular Sender with SES, there's no confirmation email. Could you try explaining a bit more what exactly you're trying to do? |
so, i think setting up a "non shared" sender with ses works. when i set up a shared sed sender and use that in a project, the frontend tells me: and then results in this: and this logentry on the server: which, i guess, is the server sending with a hardcoded from-email that is not verified at SES...and can't be. am i doing something wrong? |
this solves /issues/370 by removing a hardcoded email address
tried to make it close to what is being done in
emails.ex
, hope thats fine