Hi,
I used this library for sending e-mail from an ESP-8266 via gmail and received errors everytime.
Solution: Sender address and recepient address has to be bracketed with angle brackets.
e.g.:
const char mail_from = "john.doe@gmail.com"; // !!! Address must be in '<' and '>'
const char mail_to = "xxxxxx.yyyyyy@gmx.net"; // !!! Address must be in '<' and '>'
Hi, I used this library for sending e-mail from an ESP-8266 via gmail and received errors everytime. Solution: Sender address and recepient address has to be bracketed with angle brackets. e.g.: const char mail_from = "john.doe@gmail.com"; // !!! Address must be in '<' and '>'
const char mail_to = "xxxxxx.yyyyyy@gmx.net"; // !!! Address must be in '<' and '>'
Suggest to add this to your documentation.