sjlu / AWS-SES-simple-mail-forward

AWS Lambda function that forwards emails from SES email receiving to your email address

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS-SES-simple-mail-forward

If you are starting a new project in AWS it is sometimes necessary to have a working email (to validate certificates from ACM for example). You can set your MX records to one of external mail hosting services but the option for custom domains is usually not free or with limited features.

Other option is to set AWS SES Email receiving rule.

How to

  • Set up SNS

    • SNS > Create topic > Enter "email-forwarding" or name of your choice for topic name
  • Set up SES

  • SES > Email receiving > Rule Sets > Create rule set (or "View Active Rule Set" if you already have one in place)

  • Enter name for your rule set > "Create a Rule Set"

  • Click on your rule set > Create Rule

  • Enter your email address or string that matches many addresses (instructions are on that page) > Add recipient email

  • Click on "Verify domain" > AWS will ask you to make changes in Route53 > Next Step

  • Add action > Select SNS > select your SNS topic that you created earlier

  • Encoding > UTF-8

  • Next step

  • Rule name "forward-email" or name of your choice

  • Next step > Create Rule

  • Make your lambda function

    • Lambda > Create Lambda Function > Blank Function > Next
    • Select SNS trigger (click on dashed square left of Lambda icon) > select SNS
    • SNS topic > select your SNS topic that you created earlier
    • Check Enable trigger
    • Name it SES_Email_Forward or name of your choice
    • Runtime Node 4.3
    • Copy the code from mail_forward.js to lambda function code
    • Set environment variable fwd_address to email address that you want your emails forwarded to
    • Handler should be index.handler
    • Role: create custom role > new page will open
      • IAM Role > Create a new IAM Role
      • Role name > lambda_email_forward or enter name of your choice
      • View Policy Document > Edit
      • Copy and replace existing JSON with JSON from mail_forward_policy.json
      • Allow
    • Next > Create function

About

AWS Lambda function that forwards emails from SES email receiving to your email address


Languages

Language:JavaScript 100.0%