2015-09-08 02:06 AM
Hi,
I've a problem (I use : STM32F217 - ETH RMII Mode - Standalone) : I need to send an email... but I don't know how! a. Is it possible in standalone ? If YES... how ? b. Are there some demos/examples (with source code) ? Thanks a lot Luca #stm32f2 #rmii #email2015-09-08 03:01 AM
You need TCP/IP stack and SMTP Client.
Full implementation both have Keil MDK-ARM in2015-09-08 05:23 AM
The type of PHY shouldn't matter, provided you have a TCP/IP stack of some type.
Should be plenty of examples and documentation for POP and SMTP implementations. You might want to send the mail via your own server as most won't care to deal with you, assuming you are a spam-bot2015-09-08 05:41 AM
ST's examples for ETH come with lwip TCP/IP stack bundled, (http://www.st.com/web/en/catalog/tools/PF257896, and Cube too for those who like it). There's a smtp client for lwip in the lwip-contrib package, http://git.savannah.gnu.org/cgit/lwip/lwip-contrib.git/tree/apps/smtp
JW2015-09-14 12:18 AM
I used the 2 files :
http://git.savannah.gnu.org/cgit/lwip/lwip-contrib.git/tree/apps/smtp and it works !!! ^_^Thanks a lot to everyone! I love you !!!!!
L