25 lines
813 B
Text
25 lines
813 B
Text
<table width="95%" border="0" cellspacing="0" cellpadding="25">
|
|
<tr>
|
|
<th bgcolor="#ed8200" width="100%" align="left">
|
|
<span style="color: #fff">Contact</span><span style="color: #fddfbf">-o-Rama:</span> <span style="color: #fff">anstehende Geburtstage</span>
|
|
</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<% if @num_days == 2 %>
|
|
<h2>Übermorgen (<%= (Date.today + @num_days).strftime("%-d.%m.") %>):</h2>
|
|
<% else %>
|
|
<h2>In einer Woche (am <%= (Date.today + @num_days).strftime("%-d.%m.") %>):</h2>
|
|
<% end %>
|
|
|
|
<ul>
|
|
<% @birthday_contacts.each do |c| %>
|
|
<li><%= c.firstname %> <%= c.lastname %></li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<p>Passende Kontaktdaten gibt's vielleicht bei <a href="http://ocontact-o-rama.de">Contact-o-Rama</a>.</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|