add mailboxer templates for overriding their style
This commit is contained in:
parent
8267054d89
commit
c154716346
6 changed files with 70 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
<!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>
|
|
@ -0,0 +1,10 @@
|
|||
You have a new message: <%= @subject %>
|
||||
===============================================
|
||||
|
||||
You have received a new message:
|
||||
|
||||
-----------------------------------------------
|
||||
<%= @message.body.html_safe? ? @message.body : strip_tags(@message.body) %>
|
||||
-----------------------------------------------
|
||||
|
||||
Visit <%= root_url %> and go to your inbox for more info.
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>You have a new reply: <%= @subject %></h1>
|
||||
<p>
|
||||
You have received a new reply:
|
||||
</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>
|
|
@ -0,0 +1,10 @@
|
|||
You have a new reply: <%= @subject %>
|
||||
===============================================
|
||||
|
||||
You have received a new reply:
|
||||
|
||||
-----------------------------------------------
|
||||
<%= @message.body.html_safe? ? @message.body : strip_tags(@message.body) %>
|
||||
-----------------------------------------------
|
||||
|
||||
Visit <%= root_url %> and go to your inbox for more info.
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
||||
</head>
|
||||
<body>
|
||||
<%= raw @notification.body %>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1 @@
|
|||
<%= @notification.body.html_safe? ? @notification.body : strip_tags(@notification.body) %>
|
Loading…
Reference in a new issue