Hi there,
I think I just found a bug in ActionMailer templates.
If in my email template I have in my fisrt line:
Hi <%[email protected]%>
rest of email
…
When I receive the email I get :
Hi <%[email protected]%>
But if I put the <%[email protected]%> in second line it works and replace the
<%[email protected]%> for the user.name value
Now I have to put in my template the following:
Hi
<%[email protected]%>,
rest of email
Is this a bug?