21 lines
440 B
Text
21 lines
440 B
Text
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>You have a new message: <%= @subject %></h1>
|
||
|
<p>
|
||
|
You have received a new message:
|
||
|
</p>
|
||
|
<blockquote>
|
||
|
<p>
|
||
|
<%= raw @message.body %>
|
||
|
</p>
|
||
|
</blockquote>
|
||
|
<p>
|
||
|
Visit <%= link_to root_url, root_url %> and go to your inbox for more info.
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|