So it turns out mailers hate loop inside of them. So here's my loop.
- for ["love", "hate", "war"].each do |f|
= f
Which returns this went sent through actionmailer in rails 2.3.5 :
promotion_reminder.html.haml:17: syntax error, unexpected ';', expecting tCOLON2 or '[' or '.'
...ry_temp));}\n", 0, false);end;_hamlout.push_text(" </di...
On line #17 of app/views/notifier/promotion_reminder.html.haml
14:
15: - for ["love", "hate", "war"].each do |f|
16: = f
How would you accomplish this?