Reputation: 3
I need set sender name, but I have errors when I used this:
$mail=new \google\appengine\api\mail\Message();
$mail->setSender("Sender Name <[email protected]>");
same problem, if I tried modify headers:
$mail->addHeader("From", "Sender Name <[email protected]>");
Somebody who solved this problem?
Thanks
Upvotes: 0
Views: 119
Reputation: 239
This is a known issue in GAE PHP, you can track it at https://code.google.com/p/googleappengine/issues/detail?id=10153
Upvotes: 3