Receiving Email With SES

แชร์
ฝัง

ความคิดเห็น • 25

  • @evantilley
    @evantilley 2 ปีที่แล้ว +2

    many thanks! I'd followed a lot of tutorials but this one worked, mainly because you pointed out at 4:58 that you have to set the rule set as active.

  • @ictuslien
    @ictuslien 11 หลายเดือนก่อน

    Thank you very much! The UI changed a little but the main steps are the same. It worked for me!

  • @scottboughton2848
    @scottboughton2848 ปีที่แล้ว

    thank you, after many attempts this is the only method that worked for me!!!! You Rock!

  • @mycloudvip
    @mycloudvip 6 ปีที่แล้ว +2

    Very useful information... thanks SO much!!! Any update on creating a web viewer yet? I'm at the same step than you.

  • @arvindrajendran9753
    @arvindrajendran9753 5 ปีที่แล้ว

    Thank you for the video! Any idea how to parse the MIME format and store in another S3 bucket with message and attachment separately? I working on this piece and it's really hard to achieve it.

    • @wtfzalgo
      @wtfzalgo 4 ปีที่แล้ว

      I hope you solved this already since you posted 11 months ago, but I done exactly what you asking for using python and the packages "email" and "quopri". "email" is to get the payload and separating it from the headers, whereas quopri is to parse MIME encoded strings.
      Here's a little snippet:
      mail_message = email.message_from_bytes(raw_mail_string)
      payload_html = quopri.decodestring(mail_message.get_payload(1).as_string()).decode('utf-8')
      Pay attention that emails can have several nested payloads (for example if there's an attachment), so you need to figure out which one to get.
      Usually a MIME encoded email with no attachments has 2:
      - get_payload(0).as_string() returns a markdown-like string, whereas
      - get_payload(1).as_string() returns the full HTML of the email.
      Remember to decode it with quopri lest some characters can be fucked up.

  • @Dan-tk1fb
    @Dan-tk1fb 3 ปีที่แล้ว

    What if the email contains attachments? Do those attachments get saved automatically to the S3 bucket next to the email content?

  • @24jdag
    @24jdag 6 ปีที่แล้ว +2

    Hi, did you register a Domain only on SES Domain section, or first you registered a domain on Route 53? I'm working on something similar like this, but not work for me. I don't know if is truly necessary to have a domain on Route 53. What do you think about it?

    • @coolshrawan
      @coolshrawan 5 ปีที่แล้ว

      th-cam.com/video/L182jbqN7FY/w-d-xo.html

  • @krisorsmso5094
    @krisorsmso5094 5 ปีที่แล้ว

    Gr8 video.

  • @kojakeugenio1064
    @kojakeugenio1064 4 ปีที่แล้ว

    How can I enable it so I can receive it from my hosting email panel not from amazon?

  • @rvenkateshreddy6736
    @rvenkateshreddy6736 3 ปีที่แล้ว

    I am not able to receive emails in S3 buckets . I followed the same but still not getting emails in S3. Can help me out with this.

  • @imperialhighlandsupplies
    @imperialhighlandsupplies 5 ปีที่แล้ว

    Hello dear
    Hope you are fine and good health. It is possible to send and receive emails on ms outlook 2013 ?

  • @dushyanthgaming3242
    @dushyanthgaming3242 3 ปีที่แล้ว

    hello I need your assistance or training on ses. how to contact you

  • @naveenkerati
    @naveenkerati 6 ปีที่แล้ว

    That's really cool. Have you tried forwarding email with SES?​

    • @TheDevTechsYoutube
      @TheDevTechsYoutube  6 ปีที่แล้ว

      Glad you enjoyed it :) Not yet. Do you have specific needs? AWS also has the WorkMail service which is tailored more towards personal email. SES (as I should have explained better) is tailored more towards mass email sending, like advertising and event planning, or application emails such as password resets, confirmations, updates. Ideally its purpose is not to receive emails.
      Here is an article that utilizes SES and Lambda to forward emails to an inbox.
      medium.com/@ashan.fernando/forwarding-emails-to-your-inbox-using-amazon-ses-2d261d60e417
      Perhaps I'll create a video on it, but I was thinking of making a WorkMail tutorial next

    • @sairamachandran564
      @sairamachandran564 3 ปีที่แล้ว +1

      @@TheDevTechsTH-cam I actually did end up making my own website where I could see inbound messages sent to SES. All the power of SES minus the costs of a GSuite hosted email account. Happy to discuss further if interested.

  • @eduardokanp
    @eduardokanp 4 ปีที่แล้ว

    Cool

  • @amazonses2978
    @amazonses2978 4 ปีที่แล้ว

    Not bad

  • @TechSavvyMonk
    @TechSavvyMonk 4 ปีที่แล้ว

    Hii How to enable email receiving option to set rule. My account is showing in a disabled state for that link.

    • @jairandresdiazpuentes
      @jairandresdiazpuentes 4 ปีที่แล้ว

      the selected region does not have the service available, change the region at the top of the AWS console

  • @DeviantDeveloper
    @DeviantDeveloper 3 ปีที่แล้ว

    Awful sound. Get a good mic, get your mouth close to it

  • @kylelaker539
    @kylelaker539 ปีที่แล้ว

    I can't make this work where did you get the contact@email.xx is that made up i use godaddy as dns and everything is verified domain side I still can't figure out how to receive email?

  • @gabrierf
    @gabrierf 6 ปีที่แล้ว

    After this step, is it possible to add emails to Outlook to send and receive emails?

    • @sairamachandran564
      @sairamachandran564 3 ปีที่แล้ว

      while SES doesn't provide a public endpoint to view emails in outlook unless you sign up for AWS Workmail, at zeer0.com, we are working on a web enabled tool to send and receive emails via SES. Happy to discuss further there.