ask/app/views/asks/email.html.erb

36 lines
938 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<h1><%= @data['title'] %></h1>
<table>
<tr>
<td><%= AskQuestion.human_attribute_name(:name) %></td>
<td><%= @data['name'] %></td>
</tr>
<tr>
<td><%= AskQuestion.human_attribute_name(:identity) %></td>
<td><%= @data['identity'] %></td>
</tr>
<tr>
<td><%= AskQuestion.human_attribute_name(:mail) %></td>
<td><%= @data['mail'] %></td>
</tr>
<tr>
<td><%= AskQuestion.human_attribute_name(:phone) %></td>
<td><%= @data['phone'] %></td>
</tr>
<tr>
<td><%= AskQuestion.human_attribute_name(:fax) %></td>
<td><%= @data['fax'] %></td>
</tr>
<tr>
<td><%= AskQuestion.human_attribute_name(:content) %></td>
<td><%= @data['content'] %></td>
</tr>
</table>
<p>此為系統自動發信,請勿直接回覆</p>
</body>
</html>