/** * Created by K. Suwatchai (Mobizt) * * Email: suwatchai@outlook.com * * Github: https://github.com/mobizt/ESP-Mail-Client * * Copyright (c) 2023 mobizt */ /** * This example shows how to send Email using EthernetClient. * * This example used ESP32 and WIZnet W5500 Ethernet module. * * For ESP32 and LAN8720 see examples/SMTP/Ethernet/ESP32/Send_Text.ino * * ESP32 Arduino SDK native Ethernet using ETH.h is currently support Ethernet PHY chips * * LAN8720, TLK101, RTL8201, DP83848, DM9051, KSZ8041 and KSZ8081. * * For ESP8266, the native Ethernet is currently supported ENC28J60, W5100 and W5500. * * You do not need to set external Client with native Ethernet support PHY/MAC chips. * * */ /** Note for library update from v2.x.x to v3.x.x. * * Struct data names changed * * "ESP_Mail_Session" changes to "Session_Config" * "IMAP_Config" changes to "IMAP_Data" * * Changes in the examples * * ESP_Mail_Session session; * to * Session_Config config; * * IMAP_Config config; * to * IMAP_Data imap_data; */ #include #include #include #define SMTP_HOST "smtp.gmail.com" #define SMTP_PORT 587 #define AUTHOR_EMAIL "" #define AUTHOR_PASSWORD "" #define RECIPIENT_EMAIL "" #define WIZNET_RESET_PIN 26 // Connect W5500 Reset pin to GPIO 26 of ESP32 #define WIZNET_CS_PIN 5 // Connect W5500 CS pin to GPIO 5 of ESP32 #define WIZNET_MISO_PIN 19 // Connect W5500 MISO pin to GPIO 19 of ESP32 #define WIZNET_MOSI_PIN 23 // Connect W5500 MOSI pin to GPIO 23 of ESP32 #define WIZNET_SCLK_PIN 18 // Connect W5500 SCLK pin to GPIO 18 of ESP32 unsigned long sentMillis = 0; const int analog_pin = 34; uint8_t Eth_MAC[] = {0x02, 0xF0, 0x0D, 0xBE, 0xEF, 0x01}; SMTPSession smtp; EthernetClient eth_client; void smtpCallback(SMTP_Status status); void ResetEthernet() { Serial.println("Resetting WIZnet W5500 Ethernet Board... "); pinMode(WIZNET_RESET_PIN, OUTPUT); digitalWrite(WIZNET_RESET_PIN, HIGH); delay(200); digitalWrite(WIZNET_RESET_PIN, LOW); delay(50); digitalWrite(WIZNET_RESET_PIN, HIGH); delay(200); } void networkConnection() { Ethernet.init(WIZNET_CS_PIN); ResetEthernet(); Serial.println("Starting Ethernet connection..."); Ethernet.begin(Eth_MAC); unsigned long to = millis(); while (Ethernet.linkStatus() == LinkOFF || millis() - to < 2000) { delay(100); } if (Ethernet.linkStatus() == LinkON) { Serial.print("Connected with IP "); Serial.println(Ethernet.localIP()); } else { Serial.println("Can't connect"); } } void networkStatusRequestCallback() { smtp.setNetworkStatus(Ethernet.linkStatus() == LinkON); } void sendEmail() { Session_Config config; config.server.host_name = SMTP_HOST; config.server.port = SMTP_PORT; config.login.email = AUTHOR_EMAIL; config.login.password = AUTHOR_PASSWORD; config.login.user_domain = F("127.0.0.1"); SMTP_Message message; message.sender.name = F("ESP Mail"); message.sender.email = AUTHOR_EMAIL; message.subject = F("Test sending plain text Email"); message.addRecipient(F("Someone"), RECIPIENT_EMAIL); message.text.content = "This is simple plain text message"; smtp.setClient(ð_client); smtp.networkConnectionRequestCallback(networkConnection); smtp.networkStatusRequestCallback(networkStatusRequestCallback); if (!smtp.connect(&config)) { MailClient.printf("Connection error, Status Code: %d, Error Code: %d, Reason: %s", smtp.statusCode(), smtp.errorCode(), smtp.errorReason().c_str()); return; } if (smtp.isAuthenticated()) Serial.println("\nSuccessfully logged in."); else Serial.println("\nConnected with no Auth."); if (!MailClient.sendMail(&smtp, &message)) MailClient.printf("Error, Status Code: %d, Error Code: %d, Reason: %s", smtp.statusCode(), smtp.errorCode(), smtp.errorReason().c_str()); MailClient.printf("Free Heap: %d\n", MailClient.getFreeHeap()); } void setup() { Serial.begin(115200); Serial.println(); networkConnection(); /* For internal NTP client For times east of the Prime Meridian use 0-12 For times west of the Prime Meridian add 12 to the offset. Ex. American/Denver GMT would be -6. 6 + 12 = 18 See https://en.wikipedia.org/wiki/Time_zone for a list of the GMT/UTC timezone offsets */ MailClient.setUDPClient(&udp_client, 0 /* GMT offset */); smtp.debug(1); smtp.callback(smtpCallback); } void loop() { if (millis() - sentMillis > 120000 || sentMillis == 0) { sentMillis = millis(); sendEmail(); } } void smtpCallback(SMTP_Status status) { Serial.println(status.info()); if (status.success()) { Serial.println("----------------"); MailClient.printf("Message sent success: %d\n", status.completedCount()); MailClient.printf("Message sent failed: %d\n", status.failedCount()); Serial.println("----------------\n"); for (size_t i = 0; i < smtp.sendingResult.size(); i++) { SMTP_Result result = smtp.sendingResult.getItem(i); MailClient.printf("Message No: %d\n", i + 1); MailClient.printf("Status: %s\n", result.completed ? "success" : "failed"); MailClient.printf("Date/Time: %s\n", MailClient.Time.getDateTimeString(result.timestamp, "%B %d, %Y %H:%M:%S").c_str()); MailClient.printf("Recipient: %s\n", result.recipients.c_str()); MailClient.printf("Subject: %s\n", result.subject.c_str()); } Serial.println("----------------\n"); smtp.sendingResult.clear(); } }