I'm sending my users a update e-mail when one of their documents gets updated using a mailer. The problem is, I'm referencing the recipient in the update email - and the only information I have on them is their e-mail address. If the user gets the email as it's written, there is a link in the email body:
Update_email.html.erb
<br>
<%= @document.recipient %> has completed and signed the <%= @document.template.name %> you sent them.<br> <br>
Please log in to to view it.
<br><br>
Thanks,<br>
and the user gets something that looks like this:
foo@foo.com has completed and signed the 'document' you sent them. Please log in to view it.
However, the typical target: '_blank'
syntax doesn't seem to work.
Anyone have any idea how to pass the blank target to a ruby field like above?