-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_letter.erb
35 lines (33 loc) · 950 Bytes
/
form_letter.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank you!</title>
</head>
<body>
<h1>Thanks <%= name %>!</h1>
<p>
Thanks for coming to our conference. We couldn't have done it without you!
</p>
<p>
Political activism is at the heart of any democracy and your voice needs to be heard.
Please consider reaching out to your following representatives:
</p>
<table>
<% if legislators.kind_of?(Array) %>
<th>Name</th><th>Website</th>
<% legislators.each do |legislator| %>
<tr>
<td><%= "#{legislator.name}" %></td>
<td><%= "#{legislator.urls.join}" unless legislator.urls.nil? %></td>
</tr>
<% end %>
<% else %>
<th></th>
<td><%= "#{legislators}" %></td>
<% end %>
</table>
</body>
</html>