Page 1 of 1

SMTP Support

Posted: Thu Oct 06, 2016 11:49 pm
by GeekDad66
Does (or will) the SDK for the ESP32 support SMTP (Simple Mail Transfer Protocol)? I am looking at an application that would need to periodically send out a short (< 1Kb) status and the ESP32 looks like a nice solution if it does.

-Thanks-

Re: SMTP Support

Posted: Fri Oct 07, 2016 2:21 am
by WiFive
SMTP is pretty easy, it is definitely possible. Not sure it will be a built-in function, but should be supported through arduino and nodemcu.

Re: SMTP Support

Posted: Mon Oct 10, 2016 4:14 am
by rudi ;-)
WiFive wrote:SMTP is pretty easy, it is definitely possible. Not sure it will be a built-in function, but should be supported through arduino and nodemcu.
:roll:
https://twitter.com/eMbeddedHome/status ... 7774222336
GeekDad66 wrote:Does (or will) the SDK for the ESP32 support SMTP (Simple Mail Transfer Protocol)? I am looking at an application that would need to periodically send out a short (< 1Kb) status and the ESP32 looks like a nice solution if it does.

-Thanks-
hi,

attached as an info
on YouTube is show an application that esp32 runs like you speek.
it spread on trigger or timerinterval or others simple or complex SMTP messages, in this to an Desktop eMail Server,
can be an ISP Server too and the messages get around the world to your handheld or other devices.
if you want realisze by your self,

you can try by the documents it is a simple Protokoll.
with lwip and freertos you can build fast this clients.

if you need more infos or help, let us know, how you will get on.

[1] Structure and Identification of Management Information for TCP/IP-based Internets
[2] Management Information Base for Network Management of TCP/IP-based internets
[3] A Simple Network Management Protocol (SNMP)
[4] Management Information Base for Network Management of TCP/IP-based internets: MIB-II
[5] Private Mib Generator


The links are here
[1] https://tools.ietf.org/html/rfc1155
[2] https://tools.ietf.org/html/rfc1156
[3] https://tools.ietf.org/html/rfc1157
[4] https://tools.ietf.org/html/rfc1158
[5] https://sourceforge.net/projects/prvmibgen/

the example "SMTP Client"
Comes later on my Github
https://github.com/ESP32DE/HTTP_SMTP_POP3_Client

just in time in process and wait for release 1.0 on esp-idf

best wishes
rudi ;-)

Re: SMTP Support

Posted: Mon Oct 10, 2016 5:39 am
by WiFive
8-)

I didn't mean you have to use arduino or nodemcu, just that they already have libraries for SMTP. Good for noobs.

I give you :roll: until it support TLS and MIME attachments. :P

Re: SMTP Support

Posted: Sun Oct 16, 2016 12:15 am
by GeekDad66
Thanks guys!