EthernetInterface Libraryを使ったSimpleな SMTP ClientLibraryです. LOGIN認証を追加しました.(2014.4 Update) It is SMTPClient Library which is Simple using EthernetInterface Library.

Dependents:   SimpleSMTPClient_HelloWorld USBHost-MSD_Sensors_1 IOT-GPS-SMS IOT_HW_5_websockets ... more

Revision:
1:58550f022776
Parent:
0:3ea21ce21fe1
Child:
2:27053679f44b
--- a/SimpleSMTPClient.cpp	Mon Dec 03 09:55:59 2012 +0000
+++ b/SimpleSMTPClient.cpp	Tue Dec 04 09:55:36 2012 +0000
@@ -264,4 +264,9 @@
     if ( strlen(header) > 256 )
         return -1;
     return 0;
+}
+
+void SimpleSMTPClient::clearMessage(void)
+{
+    memset(message, 0, sizeof(message)); 
 }
\ No newline at end of file