Dolibarr / dolibarr

Dolibarr ERP CRM is a modern software package to manage your company or foundation's activity (contacts, suppliers, invoices, orders, stocks, agenda, accounting, ...). it's an open source Web application (written in PHP) designed for businesses of any sizes, foundations and freelancers.
https://www.dolibarr.org
GNU General Public License v3.0
5.51k stars 2.8k forks source link

FIX send mail to BCC when email formated as Fullname <email> #31983

Closed lvessiller-opendsi closed 1 week ago

lvessiller-opendsi commented 1 week ago

FIX send mail to BCC when email formatted as Fullname with email

When you got "Fullname with email" in the BCC field, you got this error : Error [120]: Ran into problems sending Mail. Response: 501 5.5.4 Invalid TO: Missing '>' at end of path

In this case the GETPOST("sendtoccc") removed the "email" posted value and only the "Fullname" remained. So we got a wrong "email" format sent.

I used GETPOST("sendtoccc", "alphawithlgt") such as it was already applied for others recipients fields (To and CC).