I'm trying to send out emails that display as from "My Name" rather than "[email protected]"
In my 'User_Mailer' class I have the line:
default :from => "[email protected]"
With that everything works perfectly. I change it to any of the below however and it never reaches the recipient.
default :from => "Name <[email protected]>"
default :from => '"Name" <[email protected]>'
default :from => "\"Name\" <[email protected]>"
... the list goes on.
What exactly should the syntax for that line be? I feel like I've tried everything.