在我的应用程序中,我有一个所有视图页面的布局,以' Happily,CSE团队'结尾。现在我们有一个破坏用户的观点,因为我们想要显示,可悲的是,CSE团队'。我知道有选项,' content_for标签' ,我有超过20个观看次数,因此没有使用该标签。
在user_destruction_mail视图中,我想要显示悲伤的cse团队,而不是真诚的,快乐的CSE团队。
template.html.erb
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css"
<title><%= content_for?(:page_title) ? yield(:page_title) : 'Mailer_View' %></title>
</head>
<body>
<table align="center" cellspacing="0" cellpadding="0" >
<tr>
<td class="content-main" style="">
<%= yield %>
<p class="no-margin" style="padding:10px 0 0;">
Sincerely,<br />
The Happy CSE team
</p>
</td>
</tr>
</table>
</body>
查看/ intimation_mailers / user_destruction_mail.html.erb
<p>
Ciao,<br />
The Sadly CSE team
</p>