xreef / EMailSender

Arduino, esp32, Esp8266 EMailSender with Arduino IDE, simple library to send email via smtp with attachments.
https://www.mischianti.org/category/my-libraries/emailsender-send-email-with-attachments/
MIT License
75 stars 28 forks source link

SMS Message Body displays as attachment #38

Closed HeyBill55 closed 1 year ago

HeyBill55 commented 1 year ago

When sending messages via ESP32 utilizing SMS email Scheme sourced from gmail account, the received message displays the subject correctly as text, but the body shows as an attachment. Happens regardless of the mime type used. Attachment.txt

HeyBill55 commented 1 year ago

Additional Information: Not sure if it's carrier specific issue. Currently using T-Mobile.

xreef commented 1 year ago

Hi, It's strange, I think the sms service read the encoding like a message. Not now, but if I find some additional time I check It. Bye Renzo

HeyBill55 commented 1 year ago

Thanks Renzo!  Will be curious to know what you find out. BillSent from my iPhoneOn Mar 14, 2023, at 5:58 AM, Renzo Mischianti @.***> wrote: Hi, It's strange, I think the sms service read the encoding like a message. Not now, but if I find some additional time I check It. Bye Renzo

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>

radiohound commented 11 months ago

I had the same issue with Google fi service. The solution was to add a line when sending the email to select MIME_TEXT_PLAIN - shown below: EMailSender::EMailMessage message; message.subject = "Doorbell rung"; message.message = "2 does this show up correctly"; message.mime = MIME_TEXT_PLAIN;