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 am getting InvalidS3Configuration when creating EmailForwardingRuleSet
new EmailForwardingRuleSet(this, "EmailForwardingRuleSet", {
// make the underlying rule set the active one
enableRuleSet: true,
// define how emails are being forwarded
emailForwardingProps: [
{
// your domain name you want to use for receiving and sending emails
domainName: domainName,
// a prefix that is used for the From email address to forward your mails
fromPrefix: "contact",
// a list of mappings between a prefix and target email address
emailMappings: [
{
// the prefix matching the receiver address as <prefix>@<domainName>
receivePrefix: "contact",
// the target email address(es) that you want to forward emails to
targetEmails: ["[email protected]"],
},
],
},
],
});
The text was updated successfully, but these errors were encountered:
Hi,
I am getting InvalidS3Configuration when creating EmailForwardingRuleSet
The text was updated successfully, but these errors were encountered: