Use either the HTML or the text part of an email, not both

This commit is contained in:
Tom Hughes 2011-12-01 19:54:02 +00:00
parent ce4a6eefa7
commit d88ada0d11

View file

@ -19,11 +19,12 @@ end
exit 0 unless recipient[3] == digest[0,6]
mail = Mail.new(STDIN.readlines.join)
body = mail.html_part || mail.text_part
message = Message.new(:sender => from, :recipient => to,
:sent_on => mail.date.new_offset(0),
:title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
:body => mail.body.decoded)
:body => body.decoded)
message.save!
Notifier.message_notification(message).deliver