xreef / EMailSender

Arduino, esp32, Esp8266 EMailSender with Arduino IDE, simple library to send email via smtp with attachments.
https://www.mischianti.org/category/my-libraries/emailsender-send-email-with-attachments/
MIT License
75 stars 28 forks source link

DistributionList example has incorrect comment #34

Closed ba58smith closed 1 year ago

ba58smith commented 1 year ago

Currenly in DistributionList.ino: // // Send to 3 different email first to C second to CC and third to CCn // const char* arrayOfEmail[] = {"@gmail.com", "@yahoo.com", "@hotmail.com"}; // EMailSender::Response resp = emailSend.send(arrayOfEmail, 3, message);

I believe the last line should be:

// EMailSender::Response resp = emailSend.send(arrayOfEmail, 1, 1, 1, message);

xreef commented 1 year ago

Hi @ba58smith, azzz.. yes It's correct, I fix It. Thanks Renzo