
You can add attachments also, loaded from storage devices like SD or SPIFFS. Here is Arduino ethernet usage.
Supplies
- Arduino Mega
- enc28J60
- SD card
Step 1: Select Correct Device ENC28J60 or W5100 Series
Arduino, normally, manage network with external device, the standard device like w5100 use Ethernet library the clones ENC28J60 have some libraries to select.
To select your device you must go on EMailSenderKey.h library file and set the correct one
#define DEFAULT_EMAIL_NETWORK_TYPE_ARDUINO NETWORK_ENC28J60 // Default
The library loaded to manage this type of device is UIPEthernet, you can find the library on library manager of the Arduino IDE
or you can change default network type
#define DEFAULT_EMAIL_NETWORK_TYPE_ARDUINO NETWORK_W5100
This is the standard implementation and use Ethernet library.
An important think to consider is that this Ethernet shield not support SSL or TLS, so you must find a provider SMTP that offer an SMTP connection without this type of encription.
I create a topic on forum where you can add the provider you use, that you can find mine also.
Step 2: Send Simple Email
To send an email with Arduino you must find a provider that workwithout SSL or TLS, For my solution I use with the SendGrid provider.
I think the usage is very very simple.
So you must set the provider
EMailSender emailSend("YOUR-SENDGRID-API-KEY", "YOUR-SENDGRID-PASSWD", "FROM-EMAIL", "smtp.sendgrid.net", 25);
Than you must create a message and send It
EMailSender::EMailMessage message;<br> message.subject = "Soggetto"; message.message = "Ciao come stai<br>io bene.<br>
EMailSender::Response resp = emailSend.send("email_to_receive@gmail.com", message);
Serial.println("Sending status: ");
Serial.println(resp.status); Serial.println(resp.code); Serial.println(resp.desc);
Step 3: Connect an SD Cart to Manage Attachments
Then to send attachments you must connect an SD card like in the schema.
Step 4: Send Email With Attachment
To send an email with attachments you must find a provider that supports that functionality, my SendGrid provider does not support that and GMX the provider that I used for the test no more support.
But if you find a new provider you can use this code to attach the files.
EMailSender::FileDescriptior fileDescriptor[1];<br> fileDescriptor[0].filename = F("test.txt"); fileDescriptor[0].url = F("/test.txt"); fileDescriptor[0].mime = MIME_TEXT_PLAIN; fileDescriptor[0].encode64 = false; fileDescriptor[0].storageType = EMailSender::EMAIL_STORAGE_TYPE_SD;
EMailSender::Attachments attachs = {1, fileDescriptor};
EMailSender::Response resp = emailSend.send("email_to_receive@gmail.com", message, attachs);
Step 5: The Result
Here is the email sent with an esp8266 and GMail provider (to use GMail you must enable an external program).
Step 6: Library
You can find the library on GitHub https://github.com/xreef/EMailSender
COMMENTS