-
|
Hello, I seem to have a problem receiving attachments from emails sent from Gmail web client. It all works well when using apps like Outlook, or Apple Mail, also works with Outlook web client, etc. Is this a known limitation? I assume Google has some custom mail structures that has to be adopted specifically for them?
Here is the code I use: And here are logs for outlook email: And this is GMAIL email: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
I'm looking at Mailgun logs now, and it looks like they are aware of the attachment: |
Beta Was this translation helpful? Give feedback.
-
No, Google's Gmail apps tend to send well-formatted email that follows all relevant standards. Special handing should not be necessary. A few things to look at:
|
Beta Was this translation helpful? Give feedback.
No, Google's Gmail apps tend to send well-formatted email that follows all relevant standards. Special handing should not be necessary.
A few things to look at:
Attachments may show up as either
attachmentsorinlines, depending on what email app the sender used and how they composed the message. You'll want to check both. (Images often show up as inlines rather than attachments.)Be sure you are using Mailgun's "raw mime" inbound handling (the forwarding destination url ends in
/inbound_mime/). Otherwise some attachments may be missing.That's a lot of code in your inbound receiver funct…