I am using the ruby pony gem to send an automated email in my program. The problem is I cannot figure out how to give it a newline.
For example I give it,
:body => 'first line\nsecond line'
and that is what I get in the email is:
first line\nsecond line
instead of
first line
second line
How can I fix this.