0

I have a rails application where I create contents of an email. In the text body I am using \t but the effect cannot be seen in the mail. Whereas \n is appearing in the mail content. How can I put \t?

Andrey Deineko
  • 51,333
  • 10
  • 112
  • 145

1 Answers1

1

You should use line break element.

Depending on html templating engine you use:

# in haml
%br
# in erb
<br/>
Andrey Deineko
  • 51,333
  • 10
  • 112
  • 145