You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using your package for sending emails to a database of customers. I'd like to have the name of the sender (From parameter) appear in the customer's inbox but I can't seem to make it work. If I use only the sender's email address then it works fine.
This is what I've tried so far:
But I keep getting a 501 error from the smtp server. Am I missing something? or is it a problem on the SMTP server itself while handling the message through curl?
Thanks for your help
The text was updated successfully, but these errors were encountered:
By trial and error, I found out that the following works: from = Real Name [email protected] as it gets correctly translated into Real Name <[email protected]> behind the scenes somehow.
Hi,
I'm using your package for sending emails to a database of customers. I'd like to have the name of the sender (From parameter) appear in the customer's inbox but I can't seem to make it work. If I use only the sender's email address then it works fine.
This is what I've tried so far:
"\"Name Sender\" <[email protected]>"
'"Name Sender" <[email protected]>'
paste0("\"Name Sender\"", "<[email protected]>")
But I keep getting a 501 error from the smtp server. Am I missing something? or is it a problem on the SMTP server itself while handling the message through curl?
Thanks for your help
The text was updated successfully, but these errors were encountered: