Skip to content

Instantly share code, notes, and snippets.

@brianmario
Created May 31, 2011 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianmario/1001345 to your computer and use it in GitHub Desktop.
Save brianmario/1001345 to your computer and use it in GitHub Desktop.
class TestMailer < ActionMailer::Base
default :from => "from@example.com"
def testing
mail.deliver
end
end
<%= '<a href="http://www.testing.com">Testing</a>' %>
@brianmario
Copy link
Author

This will output &lt;a href=&quot;http://www.testing.com&quot;&gt;Testing&lt;/a&gt; in the body of the email.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment