148 lines
3.7 KiB
C++
148 lines
3.7 KiB
C++
/**
|
|
* This example showed how to copy messages from the opened mailbox folder to other folder.
|
|
*
|
|
* Email: suwatchai@outlook.com
|
|
*
|
|
* Github: https://github.com/mobizt/ESP-Mail-Client
|
|
*
|
|
* Copyright (c) 2021 mobizt
|
|
*
|
|
*/
|
|
|
|
/** To receive Email using Gmail, IMAP option should be enabled. https://support.google.com/mail/answer/7126229?hl=en
|
|
* and also https://accounts.google.com/b/0/DisplayUnlockCaptcha
|
|
*
|
|
*/
|
|
|
|
/** For ESP8266, with BearSSL WiFi Client
|
|
* The memory reserved for completed valid SSL response from IMAP is 16 kbytes which
|
|
* may cause your device out of memory reset in case the memory
|
|
* allocation error.
|
|
*/
|
|
|
|
#include <Arduino.h>
|
|
#if defined(ESP32)
|
|
#include <WiFi.h>
|
|
#elif defined(ESP8266)
|
|
#include <ESP8266WiFi.h>
|
|
#endif
|
|
#include <ESP_Mail_Client.h>
|
|
|
|
#define WIFI_SSID "################"
|
|
#define WIFI_PASSWORD "################"
|
|
|
|
/* The imap host name e.g. imap.gmail.com for GMail or outlook.office365.com for Outlook */
|
|
#define IMAP_HOST "################"
|
|
|
|
/** The imap port e.g.
|
|
* 143 or esp_mail_imap_port_143
|
|
* 993 or esp_mail_imap_port_993
|
|
*/
|
|
#define IMAP_PORT 993
|
|
|
|
/* The log in credentials */
|
|
#define AUTHOR_EMAIL "################"
|
|
#define AUTHOR_PASSWORD "################"
|
|
|
|
/* Print the list of mailbox folders */
|
|
void printAllMailboxesInfo(IMAPSession &imap);
|
|
|
|
/* Print the selected folder info */
|
|
void printSelectedMailboxInfo(IMAPSession &imap);
|
|
|
|
/* The IMAP Session object used for Email reading */
|
|
IMAPSession imap;
|
|
|
|
|
|
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
|
|
*/
|
|
imap.debug(1);
|
|
|
|
/* Declare the session config data */
|
|
ESP_Mail_Session session;
|
|
|
|
/* Set the session config */
|
|
session.server.host_name = IMAP_HOST;
|
|
session.server.port = IMAP_PORT;
|
|
session.login.email = AUTHOR_EMAIL;
|
|
session.login.password = AUTHOR_PASSWORD;
|
|
|
|
|
|
/* Setup the configuration for searching or fetching operation and its result */
|
|
IMAP_Config config;
|
|
|
|
/* Connect to server with the session and config */
|
|
if (!imap.connect(&session, &config))
|
|
return;
|
|
|
|
/* {Optional] */
|
|
printAllMailboxesInfo(imap);
|
|
|
|
/* Open or select the mailbox folder to read or search the message */
|
|
if (!imap.selectFolder("INBOX"))
|
|
return;
|
|
|
|
/* Define the MessageList class to add the message to copy */
|
|
MessageList toCopy;
|
|
|
|
/* Add message uid to copy to the list */
|
|
toCopy.add(3);
|
|
toCopy.add(4);
|
|
|
|
//imap.createFolder("test");
|
|
|
|
/* Copy all messages in the list to the folder "test" */
|
|
if (imap.deleteMessages(&toCopy, "test"))
|
|
Serial.println("Messages copied");
|
|
|
|
/* Delete all messages in the list from the opened folder (move to trash) */
|
|
//imap.deleteMessages(&toCopy);
|
|
|
|
//imap.deleteolder("test");
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
|
|
}
|
|
|
|
void printAllMailboxesInfo(IMAPSession &imap)
|
|
{
|
|
/* Declare the folder collection class to get the list of mailbox folders */
|
|
FoldersCollection folders;
|
|
|
|
/* Get the mailbox folders */
|
|
if (imap.getFolders(folders))
|
|
{
|
|
for (size_t i = 0; i < folders.size(); i++)
|
|
{
|
|
/* Iterate each folder info using the folder info item data */
|
|
FolderInfo folderInfo = folders.info(i);
|
|
Serial.printf("%s%s%s", i == 0 ? "\nAvailable folders: " : ", ", folderInfo.name, i == folders.size() - 1 ? "\n" : "");
|
|
}
|
|
}
|
|
}
|