Created
May 31, 2011 21:42
-
-
Save brianmario/1001345 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TestMailer < ActionMailer::Base | |
default :from => "[email protected]" | |
def testing | |
mail.deliver | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= '<a href="http://www.testing.com">Testing</a>' %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will output
<a href="http://www.testing.com">Testing</a>
in the body of the email.