We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In order for me to use multiple from_address (e.g. to forward to the same address), do I need to re-deploy the entire stack?
from_address
How can I duplicate the lamdba function that was created?
lamdba
The text was updated successfully, but these errors were encountered:
In order for me to use multiple from_address (e.g. to forward to the same address), do I need to re-deploy the entire stack? How can I duplicate the lamdba function that was created?
I added additional recipients to the SES rule. Then I changed line 13 in the lambda function so my email shows who was the intended initial address:
// var email = msgInfo.content, headers = "From: "+forwardFrom+"\r\n"; var email = msgInfo.content, headers = "From: "+msgInfo.mail.commonHeaders.to[0]+"\r\n";
this makes the from_address not used in this case.
Sorry, something went wrong.
No branches or pull requests
In order for me to use multiple
from_address
(e.g. to forward to the same address), do I need to re-deploy the entire stack?How can I duplicate the
lamdba
function that was created?The text was updated successfully, but these errors were encountered: