Skip to content

Instantly share code, notes, and snippets.

@elricstorm
Created January 17, 2010 17:09
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 elricstorm/279450 to your computer and use it in GitHub Desktop.
Save elricstorm/279450 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Contact Message</title>
</head>
<body>
<h2>Contact Email Received</h2>
<ul>
<li>From: <%= @message.name %></li>
<li>Company: <%= @message.company %></li>
<li>Phone: <%= @message.phone %></li>
</ul>
<p>Message: <%= @message.body %></p>
</body>
</html>
Email From [[ test contact mailer ]]
From: <%= @message.name %>
Company: <%= @message.company %>
Phone: <%= @message.phone %>
Message: <%= @message.body %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment