Skip to content

Commit 251b677

Browse files
committed
Fix path sslclient and code completition for Platformio
1 parent bcefec4 commit 251b677

File tree

11 files changed

+140
-89
lines changed

11 files changed

+140
-89
lines changed

EMailSender.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* EMailSender library - Main header file wrapper
3+
*
4+
* This file serves as a compatibility layer for PlatformIO IntelliSense.
5+
* It simply includes the actual header file from the src directory.
6+
*
7+
* The actual implementation is in src/EMailSender.h
8+
*/
9+
10+
#ifndef EMailSender_Wrapper_h
11+
#define EMailSender_Wrapper_h
12+
13+
#include "src/EMailSender.h"
14+
15+
#endif
16+

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EMailSender Library v4.0.0
1+
# EMailSender Library v4.0.1
22

33
![EMailSender Logo](https://raw.githubusercontent.com/xreef/EMailSender/master/resources/EMailSenderLogo.jpg)
44

@@ -271,6 +271,10 @@ For boards with limited RAM (like Arduino Uno):
271271
- You MUST use App Passwords now
272272
- Regular account password will not work
273273
274+
## Change log v4.x
275+
- 09/10/2025: v4.0.1 Fix path sslclient and code completition of Platformio
276+
277+
274278
## 📝 Changelog v4.0.0 - 08/10/2025
275279
276280
### New Features
@@ -303,7 +307,7 @@ Most code will work without changes. If using custom client configuration:
303307
- Update authentication methods if using advanced features
304308
- Test STARTTLS connections (port 587) for better security
305309
306-
## Change log
310+
## Change log v3.x
307311
- 14/03/2024: v3.0.14 Support Arduino GIGA WiFi
308312
- 31/10/2023: v3.0.13 Fix wrong implementation of FORCE_DISABLE_SSL
309313
- 17/10/2023: v3.0.12 Fix warnigs of variable not used #43 thanks to @Patriboom @Andy2015

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
},
1717
"url": "https://www.mischianti.org/category/my-libraries/emailsender-send-email-with-attachments/",
1818
"frameworks": "Arduino",
19-
"version": "4.0.0",
19+
"version": "4.0.1",
2020
"platforms": "*"
2121
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EMailSender
2-
version=4.0.0
2+
version=4.0.1
33
author=Renzo Mischianti <renzo.mischianti@gmail.com>
44
maintainer=Renzo Mischianti <renzo.mischianti@gmail.com>
55
sentence=Send EMail via SMTP with STARTTLS support, library for Raspberry Pi Pico W, Arduino, SAMD (WiFiNINA), STM32, esp8266 and esp32.

0 commit comments

Comments
 (0)