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.
FIX send mail to BCC when email formatted as Fullname with email
in all recipients (to, cc, bcc) from form field you can have email or 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).
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).