Skip to content

Commit

Permalink
Add support storage file system libraries retachable at compile time …
Browse files Browse the repository at this point in the history
…and set Date header field by default for SMTP
  • Loading branch information
mobizt committed Nov 16, 2021
1 parent 458e4fb commit 20bbebc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mail Client Arduino Library v1.5.9
# Mail Client Arduino Library v1.5.10


[![Join the chat at https://gitter.im/mobizt/ESP_Mail_Client](https://badges.gitter.im/mobizt/ESP_Mail_Client.svg)](https://gitter.im/mobizt/ESP_Mail_Client?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand Down Expand Up @@ -149,7 +149,7 @@ The flash (upload) result shows in the command prompt window will look similar t
If the custom built WiFiNINA firmware was installed, the debug message will show the library version with WiFiNINA firmware version which followed by built number (+21060).

```
> C: ESP Mail Client v1.5.9, Fw v1.4.5+21060
> C: ESP Mail Client v1.5.10, Fw v1.4.5+21060
```

## Library Instalation
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP Mail Client",
"version": "1.5.9",
"version": "1.5.10",
"keywords": "communication, email, imap, smtp, esp32, esp8266, samd, arduino",
"description": "E-Mail Client Arduino Library that supports Espressif ESP32, ESP8266 and SAMD21 devices with built-in U-blox NINA-W102 module. This allows embedded devices to send, read Email, and get mailbox changes notification. The various types of content and attacment are supported. The library also supports Ethernet connection (ESP8266 and ESP32) through secure (SSL) and non-secure ports.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=ESP Mail Client

version=1.5.9
version=1.5.10

author=Mobizt

Expand Down
2 changes: 1 addition & 1 deletion src/ESP_Mail_Client.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Mail Client Arduino Library for Espressif's ESP32 and ESP8266 and SAMD21 with u-blox NINA-W102 WiFi/Bluetooth module
*
* Version: 1.5.9
* Version: 1.5.10
* Released: November 16, 2021
*
* Updates:
Expand Down
4 changes: 2 additions & 2 deletions src/ESP_Mail_Client.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#ifndef ESP_Mail_Client_H
#define ESP_Mail_Client_H

#define ESP_MAIL_VERSION "1.5.9"
#define ESP_MAIL_VERSION "1.5.10"

/**
* Mail Client Arduino Library for Espressif's ESP32 and ESP8266 and SAMD21 with u-blox NINA-W102 WiFi/Bluetooth module
*
* Version: 1.5.9
* Version: 1.5.10
* Released: November 16, 2021
*
* Updates:
Expand Down
3 changes: 2 additions & 1 deletion src/ESP_Mail_FS.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@
#define CARD_TYPE_SD_MMC 1
*
*/
#if defined(ESP32) || defined(ESP8266)
#include <SD.h>
#define ESP_MAIL_DEFAULT_SD_FS SD
#define CARD_TYPE_SD 1

#endif


//For ESP32, format SPIFFS or FFat if mounting failed
Expand Down

0 comments on commit 20bbebc

Please sign in to comment.