DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Add Custom Mail Header In Padrino Mailer
You want to add a custom mail header in padrino mailer
email :mail_name do
to "to@internet"
from "from@internet"
subject "Subject"
headers Hash["Header_name", "Header_value" ]
render "mail_template"
end





