Skip to content
This repository has been archived by the owner on Jan 10, 2021. It is now read-only.

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Aug 11, 2019
1 parent d0875a3 commit 3e4d532
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mail Client Arduino Library for ESP32 v 1.2.2
# Mail Client Arduino Library for ESP32 v 1.2.3

This library allows ESP32 to send Email with/without attachment and receive Email with/without attachment download via SMTP and IMAP servers.

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=ESP32 Mail Client

version=1.2.2
version=1.2.3

author=Mobizt

Expand Down
4 changes: 2 additions & 2 deletions src/ESP32_MailClient.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
*Mail Client Arduino Library for ESP32, version 1.2.2
*Mail Client Arduino Library for ESP32, version 1.2.3
*
* August 9, 2019
* August 12, 2019
*
* This library allows ESP32 to send Email with/without attachment and receive Email with/without attachment download through SMTP and IMAP servers.
*
Expand Down
4 changes: 2 additions & 2 deletions src/ESP32_MailClient.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
*Mail Client Arduino Library for ESP32, version 1.2.2
*Mail Client Arduino Library for ESP32, version 1.2.3
*
* August 9, 2019
* August 12, 2019
*
* This library allows ESP32 to send Email with/without attachment and receive Email with/without attachment download through SMTP and IMAP servers.
*
Expand Down
4 changes: 1 addition & 3 deletions src/HTTPClientESP32Ex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Customized version of ESP32 HTTPClient Library.
* Allow custom header and payload with STARTTLS support
*
* v 1.1.2
* v 1.1.3
*
* The MIT License (MIT)
* Copyright (c) 2019 K. Suwatchai (Mobizt)
Expand Down Expand Up @@ -114,8 +114,6 @@ bool HTTPClientESP32Ex::http_sendHeader(const char *header)

int HTTPClientESP32Ex::http_sendRequest(const char *header, const char *payload)
{
Serial.print(header);
Serial.print(payload);
size_t size = strlen(payload);
if (strlen(header) > 0)
{
Expand Down
2 changes: 1 addition & 1 deletion src/HTTPClientESP32Ex.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Customized version of ESP32 HTTPClient Library.
* Allow custom header and payload with STARTTLS support
*
* v 1.1.2
* v 1.1.3
*
* The MIT License (MIT)
* Copyright (c) 2019 K. Suwatchai (Mobizt)
Expand Down

0 comments on commit 3e4d532

Please sign in to comment.