Created
January 17, 2010 17:09
-
-
Save elricstorm/279450 to your computer and use it in GitHub Desktop.
This file contains 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
<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> |
This file contains 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
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