EthernetInterface Libraryを使ったSimpleな SMTP Clientプログラムを作成してみました。 I made the SMTP Client program that was Simple using EthernetInterface Library.
Dependencies: EthernetInterface NTPClient SimpleSMTPClient TextLCD mbed-rtos mbed
Fork of SimpleSMTPClient_HelloWorld by
Simple SMTP Client
Used EthernetInterface Library
Don't support TSL/SSL.
Import librarySimpleSMTPClient
EthernetInterface Libraryを使ったSimpleな SMTP ClientLibraryです. LOGIN認証を追加しました.(2014.4 Update) It is SMTPClient Library which is Simple using EthernetInterface Library.
Import programSimpleSMTPClient_HelloWorld
EthernetInterface Libraryを使ったSimpleな SMTP Clientプログラムを作成してみました。 I made the SMTP Client program that was Simple using EthernetInterface Library.
Diff: main.cpp
- Revision:
- 1:24f200936579
- Parent:
- 0:f6b11a930311
- Child:
- 3:73b115345ad1
--- a/main.cpp Mon Dec 03 09:34:15 2012 +0000 +++ b/main.cpp Mon Dec 03 09:59:24 2012 +0000 @@ -11,7 +11,7 @@ #define PORT "587" //25 or 587(OutBound Port25 Blocking ) #define USER "user-id" #define PWD "password" -#define FROM_ADDRESS "from-user@domain" +#define FROM_ADDRESS "user-id@domain" // TO_ADDRESS (Of some address is possible.) // to-user1@domain, to-user2@domain, to-user3@domain .... // The TO_ADDRESS are less than 128 characters.