Home » Mail » Mail_Queue » Bug #8287
Period in name is stripped?
Details
| Submitted | 2006-07-25 17:02 UTC |
|---|---|
| From | chris at velocimedia dot com |
| Assigned | till |
| Status | Bogus |
| Package | Mail_Queue |
| PHP Version | 5.0.5 |
| OS | Linux Debian |
| Roadmaps | (Not assigned) |
Comments
[2006-07-25 17:02 UTC] chris at velocimedia dot com
Description:
------------
This bug shows up on my *build* (where you can actually send mail to multiple recipients by changing the database table to receive an array).
When the NAME (not the email) has a "period", for example: "Mr. Test" OR "Test Person Jr.", the email does not get sent out. If you do directly to the database to edit anything (like remove the period), you "break" the serialization and therefore the message will also die.
Examples:
Mr. Test <test@test.com>
Test Person Jr. <testpersonjr@test.com>
For now, to *not* touch the PEAR part of it, I have to parse out (using str_replace('.',' ',$name)) the "period" character on all the NAME portions before calling the Mail_Queue->put() method.