I'm sending a plain text email and was wondering how I add a line break to this. It's showing up on on the same line.
From: <%= @name %>
<%= @text %>
Thanks
I'm sending a plain text email and was wondering how I add a line break to this. It's showing up on on the same line.
From: <%= @name %>
<%= @text %>
Thanks
\n
or if you're sending html email:
<br />
so:
From: <%= @name %> \n <%= @text %>
From: <%= @name %> <br /> <%= @text %>