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