3ab4a2a3e0 | ||
---|---|---|
.. | ||
extras | ||
wcs | ||
ESP_Mail_Client.cpp | ||
ESP_Mail_Client.h | ||
ESP_Mail_FS.h | ||
README.md | ||
SDK_Version_Common.h |
README.md
ESP Mail Client Arduino Library for ESP32 and ESP8266
The detail and usage of the available functions in the latest version (1.2.0) are showed below.
Global functions
Sending Email through the SMTP server.
param smtp
The pointer to SMTP session object which holds the data and the TCP client.
param msg
The pointer to SMTP_Message class which contains the header, body, and attachments.
param closeSession
The option to Close the SMTP session after sent.
return boolean
The boolean value indicates the success of operation.
bool sendMail(SMTPSession *smtp, SMTP_Message *msg, bool closeSession = true);
Reading Email through IMAP server.
param imap
The pointer to IMAP sesssion object which holds the data and the TCP client.
param closeSession
The option to close the IMAP session after fetching or searching the Email.
return boolean
The boolean value indicates the success of operation.
bool readMail(IMAPSession *imap, bool closeSession = true);
Set the argument to the Flags for the specified message.
param imap
The pointer to IMAP session object which holds the data and the TCP client.
param msgUID
The UID of the message.
param flags
The flag list to set.
param closeSession
The option to close the IMAP session after set flag.
return boolean
The boolean value indicates the success of operation.
bool setFlag(IMAPSession *imap, int msgUID, const char *flags, bool closeSession);
Add the argument to the Flags for the specified message.
param imap
The pointer to IMAP session object which holds the data and the TCP client.
param msgUID
The UID of the message.
param flags
The flag list to set.
param closeSession
The option to close the IMAP session after add flag.
return boolean
The boolean value indicates the success of operation.
bool addFlag(IMAPSession *imap, int msgUID, const char *flags, bool closeSession);
Remove the argument from the Flags for the specified message.
param imap
The pointer to IMAP session object which holds the data and the TCP client.
param msgUID
The UID of the message that flags to be removed.
param flags
The flag list to remove.
param closeSession
The option to close the IMAP session after remove flag.
return boolean
The boolean value indicates the success of operation.
bool removeFlag(IMAPSession *imap, int msgUID, const char *flags, bool closeSession);
Initialize the SD card with the SPI port.
param sck
The SPI Clock pin (ESP32 only).
param miso
The SPI MISO pin (ESSP32 only).
param mosi
The SPI MOSI pin (ESP32 only).
param ss
The SPI Chip/Slave Select pin (ESP32 and ESP8266).
return boolean
The boolean value indicates the success of operation.
bool sdBegin(uint8_t sck, uint8_t miso, uint8_t mosi, uint8_t ss);
Initialize the SD_MMC card (ESP32 only).
param mountpoint
The mounting point.
param mode1bit
Allow 1 bit data line (SPI mode).
param format_if_mount_failed
Format SD_MMC card if mount failed.
return Boolean
type status indicates the success of the operation.
bool sdMMCBegin(const char *mountpoint = "/sdcard", bool mode1bit = false, bool format_if_mount_failed = false);
Initialize the SD card with the default SPI port.
return boolean
The boolean value which indicates the success of operation.
bool sdBegin(void);
IMAPSession class functions
The following functions are available from the IMAP Session class.
This class used for controlling IMAP transports and retrieving the data from the IMAP server.
Begin the IMAP server connection.
param session
The pointer to ESP_Mail_Session structured data that keeps the server and log in details.
param config
The pointer to IMAP_Config structured data that keeps the operation options.
return boolean
The boolean value which indicates the success of operation.
bool connect(ESP_Mail_Session *session, IMAP_Config *config);
Close the IMAP session.
return boolean
The boolean value which indicates the success of operation.
bool closeSession();
Set to enable the debug.
param level
The level to enable the debug message
level = 0, no debug
level = 1, basic debug
level = 2, full debug 1
level = 333, full debug 2
void debug(int level);
Get the list of all the mailbox folders since the TCP session was opened and user was authenticated.
param folders
The FoldersCollection class that contains the collection of the
FolderInfo structured data.
return boolean
The boolean value which indicates the success of operation.
bool getFolders(FoldersCollection &folders);
Select or open the mailbox folder to search or fetch the message inside.
param folderName
The known mailbox folder name. The default name is INBOX.
param readOnly
The option to open the mailbox for read only. Set this option to false when you wish
to modify the Flags using the setFlag, addFlag and removeFlag functions.
return boolean
The boolean value which indicates the success of operation.
bool selectFolder(const char *folderName, bool readOnly = true);
Open the mailbox folder to read or search the mesages.
param folderName
The name of known mailbox folder to be opened.
param readOnly
The option to open the mailbox for reading only. Set this option to false when you wish
to modify the flags using the setFlag, addFlag and removeFlag functions.
return boolean
The boolean value which indicates the success of operation.
bool openFolder(const char *folderName, bool readOnly = true);
Close the mailbox folder that was opened.
param folderName
The mailbox folder name.
return boolean
The boolean value which indicates the success of operation.
bool closeFolder(const char *folderName);
Create folder.
param folderName
The name of folder to create.
return boolean
The boolean value which indicates the success of operation.
bool createFolder(const char *folderName);
Delete folder.
param folderName
The name of folder to delete..
return boolean
The boolean value which indicates the success of operation.
bool deleteFolder(const char *folderName);
Copy the messages to the defined mailbox folder.
param toCopy
The pointer to the MessageList class that contains the list of messages to copy.
param dest
The destination folder that the messages to copy to.
return boolean
The boolean value which indicates the success of operation.
bool copyMessages(MessageList *toCopy, const char *dest);
Delete the messages in the opened mailbox folder.
param toDelete
The pointer to the MessageList class that contains the list of messages to delete.
param expunge
The boolean option to expunge all messages.
return boolean
The boolean value which indicates the success of operation.
bool deleteMessages(MessageList *toDelete, bool expunge = false);
Assign the callback function that returns the operating status when fetching or reading the Email.
param imapCallback
The function that accepts the imapStatusCallback as parameter.
void callback(imapStatusCallback imapCallback);
Determine if no message body contained in the search result and only the message header is available.
bool headerOnly();
Get the message list from search or fetch the Emails
return The IMAP_MSG_List structured
data which contains the text and html contents,
attachments, inline images, embedded rfc822 messages details for each message.
IMAP_MSG_List data();
Get the details of the selected or opned mailbox folder
return The SelectedFolderInfo class
instance which contains the info about flags, total messages, next UID,
earch count and the available messages count.
SelectedFolderInfo selectedFolder();
Get the error details when readingg the Emails
return String
The string of error details.
String errorReason();
Clear all the cache data stored in the IMAP session object.
void empty();
IMAPSession class functions
The following functions are available from the SMTP Session class.
This class is similar to the IMAP session class, used for controlling SMTP transports and retrieving the data from the SMTP server.
Begin the SMTP server connection.
param session
The pointer to ESP_Mail_Session structured data that keeps the server and log in details.
return boolean
The boolean value indicates the success of operation.
bool connect(ESP_Mail_Session *session);
Close the SMTP session.
bool closeSession();
Set to enable the debug.
param level
The level to enable the debug message
level = 0, no debug
level = 1, basic debug
level = 2, full debug 1
level = 333, full debug 2
void debug(int level);
Get the error details when sending the Email
return String
The string of error details.
String errorReason();
Set the Email sending status callback function.
param smtpCallback
The callback function that accept the smtpStatusCallback param.
void callback(smtpStatusCallback smtpCallback);
SMTP_Message class functions
The following functions are available from the SMTP Message class.
This class is used for storing the message data including headers, body and attachments which will be processed with the SMTP session class.
To reset the SMTP_Attachment item data
param att
The SMTP_Attachment class that stores the info about attachment
This function was used for clear the internal data of attachment item to be ready for reuse.
void resetAttachItem(SMTP_Attachment &att);
To clear all data in SMTP_Message class included headers, bodies and attachments
void clear();
To clear all the inline images in SMTP_Message class.
void clearInlineimages();
To clear all the attachments.
void clearAttachments();
To clear all rfc822 message attachment.
void clearRFC822Messages();
To clear the primary recipient mailboxes.
void clearRecipients();
To clear the Carbon-copy recipient mailboxes.
void clearCc();
To clear the Blind-carbon-copy recipient mailboxes.
void clearBcc();
To clear the custom message headers.
void clearHeader();
To add attachment to the message.
param att
The SMTP_Attachment data item
void addAttachment(SMTP_Attachment &att);
To add parallel attachment to the message.
param att
The SMTP_Attachment data item
void addParallelAttachment(SMTP_Attachment &att);
To add inline image to the message.
param att
The SMTP_Attachment data item
void addInlineImage(SMTP_Attachment &att);
To add rfc822 message to the message.
param msg
The RFC822_Message class object
void addMessage(SMTP_Message &msg);
To add the primary recipient mailbox to the message.
param name
The name of primary recipient
param email
The Email address of primary recipient
void addRecipient(const char *name, const char *email);
To add Carbon-copy recipient mailbox.
param email
The Email address of secondary recipient
void addCc(const char *email);
To add Blind-carbon-copy recipient mailbox.
param email
The Email address of the tertiary recipient
void addBcc(const char *email);
To add the custom header to the message.
param hdr
The header name and value
void addHeader(const char *hdr);
[properties] The message author config
This property has the sub properties
[const char*] name - The sender name.
[const char*] email - The sender Email address.
esp_mail_email_info_t sender;
[properties] The topic of message
const char *subject;
[properties] The message type
byte type;
[properties] The PLAIN text message
This property has the sub properties
[esp_mail_smtp_embed_message_body_t] embed - The option to embed this message content as a file.
[const char*] content - The PLAIN text content of the message.
[esp_mail_blob_message_content_t] blob - The blob that contins PLAIN text content of the message.
[esp_mail_file_message_content_t] file - The file that contins PLAIN text content of the message.
[const char*] charSet - The character transcoding of the PLAIN text content of the message.
[const char*] content_type - The content type of message.
[const char*] transfer_encoding - The option to encode the content for data transfer.
[boolean] flowed - The option to send the PLAIN text with wrapping.
esp_mail_plain_body_t text;
[properties] The HTML text message
This propery has the sub properties
[const char*] content - The HTML content of the message.
[esp_mail_blob_message_content_t] blob - The blob that contins HTML content of the message.
[esp_mail_file_message_content_t] file - The file that contins HTML content of the message.
[const char*] charSet - The character transcoding of the HTML content of the message.
[const char*] content_type - The content type of message.
[const char*] transfer_encoding - The option to encode the content for data transfer.
esp_mail_html_body_t html;
[properties] The response config
This propery has the sub properties
[const char*] reply_to - The author Email address to reply.
[const char*] return_path - The sender Email address to return the message.
[int] notify - The Delivery Status Notifications enumeration e.g.
esp_mail_smtp_notify_never = 0,
esp_mail_smtp_notify_success = 1,
esp_mail_smtp_notify_failure = 2, and
esp_mail_smtp_notify_delay = 4
esp_mail_smtp_msg_response_t response;
[properties] The priority of the message
This property has the enumeration values
esp_mail_smtp_priority_high = 1,
esp_mail_smtp_priority_normal = 3,
esp_mail_smtp_priority_low = 5
esp_mail_smtp_priority priority;
[properties] The enable options
This propery has the sub property
[boolean] chunking - enable chunk data sending for large message.
esp_mail_smtp_enable_option_t enable;
[properties] The message from config
This property has the sub properties
[const char*] name - The messsage author name.
[const char*] email - The message author Email address.
esp_mail_email_info_t from;
[properties] The message identifier
const char *messageID;
[properties] The keywords or phrases, separated by commas
const char *keyword;
[properties] The comment about message
const char *comment;
[properties] The date of message
const char *date;
[properties] The return recipient of the message
const char *return_path;
IMAP_Status class functions
The following functions are available from the IMAP Status class.
This class is used as the callback parameter for retrieving the status while reading the Email.
Provide the information of each process in the reading operation.
return string
The info for each process
const char *info();
Provide the status of completion.
return boolean
The bool value indicates that all reading processes are finished
bool success();
To clear all data store in this class.
void empty();
SMTP_Status class functions
The following functions are available from the SMTP Status class.
This class is used as the callback parameter for retrieving the status while sending the Email.
Provide the information of each process in the sending operation.
return string
The info for each process
const char *info();
Provide the status of completion.
return boolean
The bool value indicates that all sending processes are finished
bool success();
To clear all data store in this class.
void empty();
Provide the number of complete sending message.
return number
The number of message that was sent
size_t completedCount();
Provide the number of failed sending message.
return number
The number of message that was not sent
size_t failedCount();
SendingResult class functions
The following functions are available from the SendingResult class.
This class is used for retrieving the info about the result of sending the messages.
Provide the information of a message sending status.
param index
The index number of a message sending status
return SMTP_Result
The SMTP_Result type data that provides these properties
[bool] completed - The status of the message
[const char *] recipients - The primary recipient mailbox of the message
[const char *] subject - The topic of the message
[time_t] timesstamp - The timestamp of the message
SMTP_Result getItem(size_t index);
Provide the amount of the result data.
return number
The number of result item
size_t size();
FoldersCollection class functions
The following functions are available from the FoldersCollection class.
This class is used for retrieving the info about the mailbox folders which available to read or serach in the user Email mailbox.
Provide the information of a folder in a folder collection.
param index
The index number of folders
return esp_mail_folder_info_item_t
The esp_mail_folder_info_item_t structured data that provides these properties
[const char *] name - The name of folder
[const char *] attributes - The attributes of folder
[const char *] delimiter - The delimeter of folder
esp_mail_folder_info_item_t info(size_t index);
Provide the number of folders in the collection.
return number
The number of folder in the collection
size_t size();
SelectedFolderInfo class functions
The following functions are available from the SelectedFolderInfo class.
This class is used for retrieving the info about the sselected or opened mailbox folder.
Provide the numbers of flags in the user Email mailbox.
return number
The numbers of flags
size_t flagCount();
Provide the numbers of messages in this mailbox.
return number
The numbers of messages in the selected mailbox folder
size_t msgCount();
Provide the predicted next message UID in the sselected folder.
return number
The number represents the next message UID number
size_t nextUID();
Provide the numbers of messages from search result based on the search criteria.
return number
The total number of messsages from search
size_t searchCount();
Provide the numbers of messages to be stored in the ressult.
return number
The number of messsage stored from search
size_t availableMessages();
Provide the flag argument at the specified index.
return index
The index of flag in the flags list
return String
The argument of selected flag
String flag(size_t index);
ESP_Mail_Session type data
The following properties are available from the ESP_Mail_Session data type.
This data type is used for storing the session info about the server and login credentials.
[Properties] The server config
This property has the sub properties
[const char *] host_name - The hostName of the server.
[uint16_t] port - The port on the server to connect to.
esp_mail_sesson_sever_config_t server;
[Properties] The log in config
This property has the sub properties
[const char *] email - The user Email address to log in.
[consst char *] password - The user password to log in.
[consst char *] accessToken - The OAuth2.0 access token to log in.
[consst char *] user_domain - The user domain or ip of client.
esp_mail_sesson_login_config_t login;
[Properties] The secure config
This property has the sub properties
[bool] startTLS - The option to send the command to start the TLS connection.
esp_mail_sesson_secure_config_t secure;
[Properties] The certificate config
[const char *] cert_data - The certificate data (base64 data).
[consst char *] cert_file - The certificate file (DER format).
[esp_mail_file_storage_type] cert_file_storage_type - The storage type.
esp_mail_sesson_cert_config_t certificate;
IMAP_Config type data
The following properties are available from the IMAP_Config data type.
This data type is used for storing the IMAP transport and operating options to control and store the operation result e.g. the messahe contents from search and fetch.
[Properties] The config for fetching
This property has the sub property
[const char *] uid - The UID of message to fetch.
esp_mail_imap_fetch_config_t fetch;
[Properties] The config for search
This property has the sub properties
[const char *] criteria - The search criteria.
[boolean] unseen_msg - The option to search the unseen message.
esp_mail_imap_search_config_t search;
[Properties] The config about the limits
This property has the sub properties
[size_t] search - The maximum messages from the search result.
[size_t] msg_size - The maximum size of the memory buffer to store the message content.
This is only limit for data to be stored in the IMAPSession.
[size_t] attachment_size - The maximum size of each attachment to download.
esp_mail_imap_limit_config_t limit;
[Properties] The config to enable the features
This property has the sub properties
[boolean] text - To store the PLAIN text of the message in the IMAPSession.
[boolean] html - To store the HTML of the message in the IMAPSession.
[boolean] rfc822 - To store the rfc822 messages in the IMAPSession.
[boolean] download_status - To enable the download status via the serial port.
[boolean] recent_sort - To sort the message UID of the search result in descending order.
esp_mail_imap_enable_config_t enable;
[Properties] The config about downloads
This property has the sub properties
[boolean] text - To download the PLAIN text content of the message.
[boolean] html - To download the HTML content of the message.
[boolean] attachment - To download the attachments of the message.
[boolean] inlineImg - To download the inline image of the message.
[boolean] rfc822 - To download the rfc822 mesages in the message.
[boolean] header - To download the message header.
esp_mail_imap_download_config_t download;
[Properties] The config about the storage and path to save the downloaded file.
This property has the sub properties
[const char*] saved_path - The path to save the downloaded file.
[esp_mail_file_storage_type] type - The type of file storages enumeration e.g.
esp_mail_file_storage_type_none = 0,
esp_mail_file_storage_type_flash = 1, and
esp_mail_file_storage_type_sd = 2
esp_mail_imap_storage_config_t storage;
esp_mail_smtp_embed_message_body_t structured data
The following properties are available from the IMAP_Config data type.
This data type is used for storing the IMAP transport and operating options to control and store the operation result e.g. the messahe contents from search and fetch.
[Properties] Enable to send this message body as file
bool enable;
[Properties] The name of embedded file
const char* enable;
[Properties] The embedded type enumeration
esp_mail_smtp_embed_message_type_attachment = 0
sp_mail_smtp_embed_message_type_inline = 1
esp_mail_smtp_embed_message_type type;
esp_mail_blob_message_content_t structured data
The following properties are available from the esp_mail_blob_message_content_t data type.
This data type is used for storing the blob info of message body.
[Properties] The array of content in flash memory.
const uint8_t * data;
[Properties] The array size in bytes.
size_t size;
esp_mail_file_message_content_t structured data
The following properties are available from the esp_mail_file_message_content_t data type.
This data type is used for storing the file info of message body.
[Properties] The file path include its name.
const char *name;
[Properties] The type of file storages.
esp_mail_file_storage_type type;
IMAP_MSG_Item type data
The following properties are available from the IMAP_MSG_Item data type.
This data type is used for message item info and its contents from search and fetch.
[Properties] The message number
const char *msgNo;
[Properties] The message UID
const char *UID;
[Properties] The message identifier
const char *ID;
[Properties] The language(s) for auto-responses
const char *acceptLang;
[Properties] The language of message content
const char *contentLang;
[Properties] The mailbox of message author
const char *from;
[Properties] The charset of the mailbox of message author
const char *fromCharset;
[Properties] The primary recipient mailbox
const char *to;
[Properties] The charset of the primary recipient mailbox
const char *toCharset;
[Properties] The Carbon-copy recipient mailboxes
const char *cc;
[Properties] The charset of the Carbon-copy recipient mailbox header
const char *ccCharset;
[Properties] The message date and time
const char *date;
[Properties] The topic of message
const char *subject;
[Properties] The topic of message charset
const char *subjectCharset;
[Properties] The PLAIN text content of the message
esp_mail_plain_body_t text;
[Properties] The HTML content of the message
esp_mail_html_body_t html;
[Properties] The sender Email
const char *sender;
[Properties] The message identifier
const char *messageID;
[Properties] The keywords or phrases, separated by commas
const char *keyword;
[Properties] The comment about message
const char *comment;
[Properties] The return recipient of the message
const char *return_path;
[Properties] The Email address to reply
const char *reply_to;
[Properties] The Blind carbon-copy recipients
const char *bcc;
[Properties] The error description from fetching the message
const char *fetchError;
[Properties] The info about the attachments in the message
std::vector<IMAP_Attach_Item> attachments;
[Properties] The info about the rfc822 messages included in the message
std::vector<IMAP_MSG_Item> rfc822;
Search Criteria
Search crieria is used for searching the mailbox for messages that match the given searching criteria.
Searching criteria consist of one or more search keys. When multiple keys are specified, the result is the intersection (AND function) of all the messages that match those keys.
Example:
DELETED FROM "SMITH" SINCE 1-Feb-1994
refers
to all deleted messages from Smith that were placed in the mailbox since
February 1, 1994.
A search key can also be a parenthesized list of one or more search keys (e.g., for use with the OR and NOT keys).
SINCE 10-Feb-2019
will search all messages that received since 10 Feb 2019
UID SEARCH ALL
will seach all message which will return the message UID
that can be use later for fetch one or more messages.
The following keywords can be used for the search criteria.
ALL - All messages in the mailbox; the default initial key for ANDing.
ANSWERED - Messages with the \Answered flag set.
BCC - Messages that contain the specified string in the envelope structure's BCC field.
BEFORE - Messages whose internal date (disregarding time and timezone) is earlier than the specified date.
BODY - Messages that contain the specified string in the body of the message.
CC - Messages that contain the specified string in the envelope structure's CC field.
DELETED - Messages with the \Deleted flag set.
DRAFT - Messages with the \Draft flag set.
FLAGGED - Messages with the \Flagged flag set.
FROM - Messages that contain the specified string in the envelope structure's FROM field.
HEADER - Messages that have a header with the specified field-name (as defined in [RFC-2822])
and that contains the specified string in the text of the header (what comes after the colon).
If the string to search is zero-length, this matches all messages that have a header line with
the specified field-name regardless of the contents.
KEYWORD - Messages with the specified keyword flag set.
LARGER - Messages with an (RFC-2822) size larger than the specified number of octets.
NEW - Messages that have the \Recent flag set but not the \Seen flag.
This is functionally equivalent to "(RECENT UNSEEN)".
NOT - Messages that do not match the specified search key.
OLD - Messages that do not have the \Recent flag set. This is functionally equivalent to
"NOT RECENT" (as opposed to "NOT NEW").
ON - Messages whose internal date (disregarding time and timezone) is within the specified date.
OR - Messages that match either search key.
RECENT - Messages that have the \Recent flag set.
SEEN - Messages that have the \Seen flag set.
SENTBEFORE - Messages whose (RFC-2822) Date: header (disregarding time and timezone) is earlier than the specified date.
SENTON - Messages whose (RFC-2822) Date: header (disregarding time and timezone) is within the specified date.
SENTSINCE - Messages whose (RFC-2822) Date: header (disregarding time and timezone) is within or later than the specified date.
SINCE - Messages whose internal date (disregarding time and timezone) is within or later than the specified date.
SMALLER - Messages with an (RFC-2822) size smaller than the specified number of octets.
SUBJECT - Messages that contain the specified string in the envelope structure's SUBJECT field.
TEXT - Messages that contain the specified string in the header or body of the message.
TO - Messages that contain the specified string in the envelope structure's TO field.
UID - Messages with unique identifiers corresponding to the specified unique identifier set.
Sequence set ranges are permitted.
UNANSWERED - Messages that do not have the \Answered flag set.
UNDELETED - Messages that do not have the \Deleted flag set.
UNDRAFT - Messages that do not have the \Draft flag set.
UNFLAGGED - Messages that do not have the \Flagged flag set.
UNKEYWORD - Messages that do not have the specified keyword flag set.
UNSEEN - Messages that do not have the \Seen flag set.
MailClient.Time functions
The helper function to set and get the system time.
Set the system time from the NTP server
param gmtOffset
The GMT time offset in hour.
param daylightOffset
The Daylight time offset in hour.
return boolean
The status indicates the success of operation.
This requires internet connection
bool setClock(float gmtOffset, float daylightOffset);
Provide the Unix time
return uint32_t
The value of current Unix time.
uint32_t getUnixTime();
Provide the timestamp from the year, month, date, hour, minute, and second provided
param year
The year.
param mon
The months from 1 to 12.
param date
The dates.
param hour
The hours.
param mins
The minutes.
param sec
The seconds.
return time_t
The value of timestamp.
time_t getTimestamp(int year, int mon, int date, int hour, int mins, int sec);
Provide the current year.
return int
The value of current year.
int getYear();
Provide the current month.
return int
The value of current month.
int getMonth();
Provide the current date.
return int
The value of current date.
int getDay();
Provide the current day of week.
return int
The value of day of week.
1 for sunday and 7 for saturday
int getDayOfWeek();
Provide the current day of week in String.
return String
The value of day of week.
Returns sunday, monday, tuesday, wednesday, thurseday, friday and saturday.
String getDayOfWeekString();
Provide the current hour.
return int
The value of current hour (0 to 23).
int getHour();
Provide the current minute.
return int
The value of current minute (0 to 59).
int getMin();
Provide the current second.
return int
The value of current second (0 to 59).
int getSecond();
Provide the total days of current year.
return int
The value of total days of current year.
int getNumberOfDayThisYear();
Provide the total days of from January 1, 1970 to specific date.
param year
The years from 1970.
param mon
The months from 1 to 12.
param date
The dates.
return int
The value of total days.
int getTotalDays(int year, int month, int day);
Provide the day of week from specific date.
param year
The years.
param month
The months from 1 to 12.
param day
The dates.
return int
The value of day of week.
1 for sunday and 7 for saturday
int dayofWeek(int year, int month, int day);
Provide the second of current hour.
return int
The value of current second.
int getCurrentSecond();
Provide the current timestamp.
return uint64_t
The value of current timestamp.
uint64_t getCurrentTimestamp();
Provide the date and time from second counted from January 1, 1970.
param sec
The seconds from January 1, 1970 00.00.
return tm
The tm structured data.
The returned structured data tm has the members e.g.
tm_year (from 1900), tm_mon (from 0 to 11), tm_mday, tm_hour, tm_min and tm_sec.
struct tm getTimeFromSec(int secCount);
Provide the current date time string that valid for Email
return String
The current date time string.
String getDateTimeString();
License
The MIT License (MIT)
Copyright (c) 2021 K. Suwatchai (Mobizt)
Permission is hereby granted, free of charge, to any person returning a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.