Skip to content

Commit

Permalink
Update ESP32 ethernet examples for WiFi event enums changed in Core v…
Browse files Browse the repository at this point in the history
…2.0.0.
  • Loading branch information
mobizt committed Oct 25, 2021
1 parent fdc2807 commit 848c751
Show file tree
Hide file tree
Showing 16 changed files with 342 additions and 24 deletions.
45 changes: 42 additions & 3 deletions examples/SMTP/Ethernet/ESP32/Send_Text/Send_Text.ino
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,52 @@ unsigned long sendMillis = 0;
void WiFiEvent(WiFiEvent_t event)
{
//Do not run any function here to prevent stack overflow or nested interrupt

#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0)

switch (event)
{
case SYSTEM_EVENT_ETH_START:
case ARDUINO_EVENT_ETH_START:
Serial.println("ETH Started");
//set eth hostname here
ETH.setHostname("esp32-ethernet");
break;
case ARDUINO_EVENT_ETH_CONNECTED:
Serial.println("ETH Connected");
break;
case ARDUINO_EVENT_ETH_GOT_IP:
Serial.print("ETH MAC: ");
Serial.print(ETH.macAddress());
Serial.print(", IPv4: ");
Serial.print(ETH.localIP());
if (ETH.fullDuplex())
{
Serial.print(", FULL_DUPLEX");
}
Serial.print(", ");
Serial.print(ETH.linkSpeed());
Serial.println("Mbps");
eth_connected = true;
break;
case ARDUINO_EVENT_ETH_DISCONNECTED:
Serial.println("ETH Disconnected");
eth_connected = false;
break;
case ARDUINO_EVENT_ETH_STOP:
Serial.println("ETH Stopped");
eth_connected = false;
break;
default:
break;
}

#else
switch (event)
{
case SYSTEM_EVENT_ETH_START:
Serial.println("ETH Started");
//set eth hostname here
ETH.setHostname("esp32-ethernet");
break;
case SYSTEM_EVENT_ETH_CONNECTED:
Serial.println("ETH Connected");
Expand All @@ -127,7 +166,6 @@ void WiFiEvent(WiFiEvent_t event)
Serial.print(ETH.linkSpeed());
Serial.println("Mbps");
eth_connected = true;

break;
case SYSTEM_EVENT_ETH_DISCONNECTED:
Serial.println("ETH Disconnected");
Expand All @@ -140,6 +178,7 @@ void WiFiEvent(WiFiEvent_t event)
default:
break;
}
#endif
}

void sendMail()
Expand Down Expand Up @@ -206,7 +245,7 @@ void sendMail()
message.sender.name = "ESP Mail";
message.sender.email = AUTHOR_EMAIL;
message.subject = "Test sending plain text Email";
message.addRecipient("Someone", "####@#####_dot_com");
message.addRecipient("Someone", "change_this@your_mail_dot_com");

String textMsg = "This is simple plain text message";
message.text.content = textMsg.c_str();
Expand Down
2 changes: 1 addition & 1 deletion examples/SMTP/Ethernet/ESP8266/Send_Text/Send_Text.ino
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void sendMail()
message.sender.name = "ESP Mail";
message.sender.email = AUTHOR_EMAIL;
message.subject = "Test sending plain text Email";
message.addRecipient("Someone", "####@#####_dot_com");
message.addRecipient("Someone", "change_this@your_mail_dot_com");

String textMsg = "This is simple plain text message";
message.text.content = textMsg.c_str();
Expand Down
2 changes: 1 addition & 1 deletion examples/SMTP/Send_Access_Token/Send_Access_Token.ino
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ void setup()
message.sender.name = "ESP Mail";
message.sender.email = AUTHOR_EMAIL;
message.subject = "Test sending Email using Access token";
message.addRecipient("Admin", "####@#####_dot_com");
message.addRecipient("Admin", "change_this@your_mail_dot_com");

message.text.content = "This is simple plain text message";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void setup()
message.sender.email = AUTHOR_EMAIL;

message.subject = "Test sending Email with attachments and inline images";
message.addRecipient("user1", "####@#####_dot_com");
message.addRecipient("user1", "change_this@your_mail_dot_com");

message.html.content = "<span style=\"color:#ff0000;\">This message contains 3 inline images and 1 attachment file.</span><br/><br/><img src=\"firebase_logo.png\" width=\"80\" height=\"60\"> <img src=\"tree.gif\" width=\"40\" height=\"60\"> <img src=\"bird.gif\" width=\"116\" height=\"75\">";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ void setup()
message.sender.email = AUTHOR_EMAIL;

message.subject = "Test sending Email with attachments and inline images from SD card and Flash";
message.addRecipient("user1", "####@#####_dot_com");
message.addRecipient("user1", "change_this@your_mail_dot_com");

/** Two alternative content versions are sending in this example e.g. plain text and html */
#if defined(ESP32) || defined(ESP8266)
Expand Down
279 changes: 279 additions & 0 deletions examples/SMTP/Send_Attachment_PSRAM/Send_Attachment_PSRAM.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,279 @@


/**
* This example will send the Email with attachment stored in PSRAM (ESP32 only).
*
* Created by K. Suwatchai (Mobizt)
*
* Email: suwatchai@outlook.com
*
* Github: https://github.com/mobizt/ESP-Mail-Client
*
* Copyright (c) 2021 mobizt
*
*/

//To use send Email for Gmail to port 465 (SSL), less secure app option should be enabled. https://myaccount.google.com/lesssecureapps?pli=1

#include <Arduino.h>
#if defined(ESP32)
#include <WiFi.h>
#endif
#include <ESP_Mail_Client.h>

#define WIFI_SSID "<ssid>"
#define WIFI_PASSWORD "<password>"

/** The smtp host name e.g. smtp.gmail.com for GMail or smtp.office365.com for Outlook or smtp.mail.yahoo.com
* For yahoo mail, log in to your yahoo mail in web browser and generate app password by go to
* https://login.yahoo.com/account/security/app-passwords/add/confirm?src=noSrc
* and use the app password as password with your yahoo mail account to login.
* The google app password signin is also available https://support.google.com/mail/answer/185833?hl=en
*/
#define SMTP_HOST "<host>"

/** The smtp port e.g.
* 25 or esp_mail_smtp_port_25
* 465 or esp_mail_smtp_port_465
* 587 or esp_mail_smtp_port_587
*/
#define SMTP_PORT esp_mail_smtp_port_587

/* The log in credentials */
#define AUTHOR_EMAIL "<email>"
#define AUTHOR_PASSWORD "<password>"

/* The SMTP Session object used for Email sending */
SMTPSession smtp;

/* Callback function to get the Email sending status */
void smtpCallback(SMTP_Status status);

const char rootCACert[] PROGMEM = "-----BEGIN CERTIFICATE-----\n"
"-----END CERTIFICATE-----\n";

void setup()
{

Serial.begin(115200);

Serial.println();

Serial.print("Connecting to AP");

WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
while (WiFi.status() != WL_CONNECTED)
{
Serial.print(".");
delay(200);
}

Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
Serial.println();

/** Enable the debug via Serial port
* none debug or 0
* basic debug or 1
*
* Debug port can be changed via ESP_MAIL_DEFAULT_DEBUG_PORT in ESP_Mail_FS.h
*/
smtp.debug(1);

/* Set the callback function to get the sending results */
smtp.callback(smtpCallback);

/* Declare the session config data */
ESP_Mail_Session session;

/** ########################################################
* Some properties of SMTPSession data and parameters pass to
* SMTP_Message class accept the pointer to constant char
* i.e. const char*.
*
* You may assign a string literal to that properties or function
* like below example.
*
* session.login.user_domain = "mydomain.net";
* session.login.user_domain = String("mydomain.net").c_str();
*
* or
*
* String doman = "mydomain.net";
* session.login.user_domain = domain.c_str();
*
* And
*
* String name = "Jack " + String("dawson");
* String email = "jack_dawson" + String(123) + "@mail.com";
*
* message.addRecipient(name.c_str(), email.c_str());
*
* message.addHeader(String("Message-ID: <abcde.fghij@gmail.com>").c_str());
*
* or
*
* String header = "Message-ID: <abcde.fghij@gmail.com>";
* message.addHeader(header.c_str());
*
* ###########################################################
*/

/* Set the session config */
session.server.host_name = SMTP_HOST;
session.server.port = SMTP_PORT;
session.login.email = AUTHOR_EMAIL;
session.login.password = AUTHOR_PASSWORD;
session.login.user_domain = "mydomain.net";

/* Declare the message class */
SMTP_Message message;

/* Set the message headers */
message.sender.name = "ESP Mail";
message.sender.email = AUTHOR_EMAIL;
message.subject = "Test sending plain text Email with PSRAM attachment";
message.addRecipient("Someone", "change_this@your_mail_dot_com");

String textMsg = "This is simple plain text message with PSRAM attachment";
message.text.content = textMsg.c_str();

/** The Plain text message character set e.g.
* us-ascii
* utf-8
* utf-7
* The default value is utf-8
*/
message.text.charSet = "us-ascii";

/** The content transfer encoding e.g.
* enc_7bit or "7bit" (not encoded)
* enc_qp or "quoted-printable" (encoded)
* enc_base64 or "base64" (encoded)
* enc_binary or "binary" (not encoded)
* enc_8bit or "8bit" (not encoded)
* The default value is "7bit"
*/
message.text.transfer_encoding = Content_Transfer_Encoding::enc_7bit;

//If this is a reply message
//message.in_reply_to = "<parent message id>";
//message.references = "<parent references> <parent message id>";

/** The message priority
* esp_mail_smtp_priority_high or 1
* esp_mail_smtp_priority_normal or 3
* esp_mail_smtp_priority_low or 5
* The default value is esp_mail_smtp_priority_low
*/
message.priority = esp_mail_smtp_priority::esp_mail_smtp_priority_low;

//message.response.reply_to = "someone@somemail.com";
//message.response.return_path = "someone@somemail.com";

/** The Delivery Status Notifications e.g.
* esp_mail_smtp_notify_never
* esp_mail_smtp_notify_success
* esp_mail_smtp_notify_failure
* esp_mail_smtp_notify_delay
* The default value is esp_mail_smtp_notify_never
*/
//message.response.notify = esp_mail_smtp_notify_success | esp_mail_smtp_notify_failure | esp_mail_smtp_notify_delay;

/* Set the custom message header */
message.addHeader("Message-ID: <abcde.fghij@gmail.com>");


//For Root CA certificate verification (ESP8266 and ESP32 only)
//session.certificate.cert_data = rootCACert;
//or
//session.certificate.cert_file = "/path/to/der/file";
//session.certificate.cert_file_storage_type = esp_mail_file_storage_type_flash; // esp_mail_file_storage_type_sd
//session.certificate.verify = true;

//The WiFiNINA firmware the Root CA certification can be added via the option in Firmware update tool in Arduino IDE

/* The attachment data item */
SMTP_Attachment att[1];
int attIndex = 0;

#if defined(ESP32)

int dlen = 3 * 1024 * 1024 + 512 * 1024;
uint8_t *data = (uint8_t *)ps_malloc(dlen);

if (psramFound())
{
memset(data, 0xff, dlen);

att[attIndex].descr.filename = "data.dat";
att[attIndex].descr.mime = "application/octet-stream";
att[attIndex].blob.data = data;
att[attIndex].blob.size = dlen;
att[attIndex].descr.transfer_encoding = Content_Transfer_Encoding::enc_base64;

/* Add inline image to the message */
message.addInlineImage(att[attIndex]);
}

#endif

/* Connect to server with the session config */
if (!smtp.connect(&session))
return;

/* Start sending Email and close the session */
if (!MailClient.sendMail(&smtp, &message))
Serial.println("Error sending Email, " + smtp.errorReason());

//to clear sending result log
//smtp.sendingResult.clear();

ESP_MAIL_PRINTF("Free Heap: %d\n", MailClient.getFreeHeap());
}

void loop()
{
}

/* Callback function to get the Email sending status */
void smtpCallback(SMTP_Status status)
{
/* Print the current status */
Serial.println(status.info());

/* Print the sending result */
if (status.success())
{
Serial.println("----------------");
ESP_MAIL_PRINTF("Message sent success: %d\n", status.completedCount());
ESP_MAIL_PRINTF("Message sent failled: %d\n", status.failedCount());
Serial.println("----------------\n");
struct tm dt;

for (size_t i = 0; i < smtp.sendingResult.size(); i++)
{
/* Get the result item */
SMTP_Result result = smtp.sendingResult.getItem(i);
time_t ts = (time_t)result.timestamp;
localtime_r(&ts, &dt);

ESP_MAIL_PRINTF("Message No: %d\n", i + 1);
ESP_MAIL_PRINTF("Status: %s\n", result.completed ? "success" : "failed");
ESP_MAIL_PRINTF("Date/Time: %d/%d/%d %d:%d:%d\n", dt.tm_year + 1900, dt.tm_mon + 1, dt.tm_mday, dt.tm_hour, dt.tm_min, dt.tm_sec);
ESP_MAIL_PRINTF("Recipient: %s\n", result.recipients);
ESP_MAIL_PRINTF("Subject: %s\n", result.subject);
}
Serial.println("----------------\n");

//You need to clear sending result as the memory usage will grow up as it keeps the status, timstamp and
//pointer to const char of recipients and subject that user assigned to the SMTP_Message object.

//Because of pointer to const char that stores instead of dynamic string, the subject and recipients value can be
//a garbage string (pointer points to undefind location) as SMTP_Message was declared as local variable or the value changed.

//smtp.sendingResult.clear();
}
}
Loading

0 comments on commit 848c751

Please sign in to comment.