mirror of
https://github.com/arendst/Tasmota.git
synced 2025-11-20 08:20:45 +00:00
* `Sendmail` upgraded to ESP-Mail-Client v3.4.9 from v1.2.0, using BearSSL instead of MbedTLS * Fix compilation on ESP8266 * Fix compilation * fix compilation
188 lines
4.5 KiB
C++
188 lines
4.5 KiB
C++
|
|
/**
|
|
* 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 external WiFiClient.
|
|
|
|
/** 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 <Arduino.h>
|
|
#if defined(ESP32) || defined(ARDUINO_RASPBERRY_PI_PICO_W)
|
|
#include <WiFi.h>
|
|
#elif defined(ESP8266)
|
|
#include <ESP8266WiFi.h>
|
|
#elif __has_include(<WiFiNINA.h>)
|
|
#include <WiFiNINA.h>
|
|
#elif __has_include(<WiFi101.h>)
|
|
#include <WiFi101.h>
|
|
#elif __has_include(<WiFiS3.h>)
|
|
#include <WiFiS3.h>
|
|
#endif
|
|
|
|
#include <ESP_Mail_Client.h>
|
|
|
|
#define WIFI_SSID "<ssid>"
|
|
#define WIFI_PASSWORD "<password>"
|
|
|
|
#define SMTP_HOST "<host>"
|
|
#define SMTP_PORT esp_mail_smtp_port_587
|
|
#define AUTHOR_EMAIL "<email>"
|
|
#define AUTHOR_PASSWORD "<password>"
|
|
#define RECIPIENT_EMAIL "<recipient email here>"
|
|
|
|
SMTPSession smtp;
|
|
|
|
WiFiClient wifi_client;
|
|
|
|
#if defined(ARDUINO_RASPBERRY_PI_PICO_W)
|
|
WiFiMulti multi;
|
|
#endif
|
|
|
|
void smtpCallback(SMTP_Status status);
|
|
|
|
void networkStatusRequestCallback()
|
|
{
|
|
smtp.setNetworkStatus(WiFi.status() == WL_CONNECTED);
|
|
}
|
|
|
|
void networkConnectionRequestCallback()
|
|
{
|
|
Serial.println();
|
|
|
|
#if defined(ARDUINO_RASPBERRY_PI_PICO_W)
|
|
multi.addAP(WIFI_SSID, WIFI_PASSWORD);
|
|
multi.run();
|
|
#else
|
|
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
|
#endif
|
|
|
|
Serial.print("Connecting to Wi-Fi");
|
|
|
|
#if defined(ARDUINO_RASPBERRY_PI_PICO_W)
|
|
unsigned long ms = millis();
|
|
#endif
|
|
|
|
while (WiFi.status() != WL_CONNECTED)
|
|
{
|
|
Serial.print(".");
|
|
delay(300);
|
|
#if defined(ARDUINO_RASPBERRY_PI_PICO_W)
|
|
if (millis() - ms > 10000)
|
|
break;
|
|
#endif
|
|
}
|
|
Serial.println();
|
|
Serial.print("Connected with IP: ");
|
|
Serial.println(WiFi.localIP());
|
|
Serial.println();
|
|
}
|
|
|
|
void setup()
|
|
{
|
|
|
|
Serial.begin(115200);
|
|
|
|
networkConnectionRequestCallback();
|
|
|
|
MailClient.networkReconnect(true);
|
|
|
|
#if defined(ARDUINO_RASPBERRY_PI_PICO_W)
|
|
MailClient.clearAP();
|
|
MailClient.addAP(WIFI_SSID, WIFI_PASSWORD);
|
|
#endif
|
|
|
|
smtp.debug(1);
|
|
|
|
smtp.callback(smtpCallback);
|
|
|
|
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");
|
|
|
|
config.time.ntp_server = F("pool.ntp.org,time.nist.gov");
|
|
|
|
smtp.setClient(&wifi_client);
|
|
|
|
smtp.networkStatusRequestCallback(networkStatusRequestCallback);
|
|
|
|
smtp.networkConnectionRequestCallback(networkConnectionRequestCallback);
|
|
|
|
smtp.connect(&config);
|
|
|
|
if (smtp.isAuthenticated())
|
|
Serial.println("\nSuccessfully logged in.");
|
|
else
|
|
Serial.println("\nConnected with no Auth.");
|
|
|
|
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";
|
|
|
|
if (!MailClient.sendMail(&smtp, &message))
|
|
Serial.println("Error sending Email, " + smtp.errorReason());
|
|
|
|
MailClient.printf("Free Heap: %d\n", MailClient.getFreeHeap());
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|