]> git.openstreetmap.org Git - rails.git/blobdiff - script/deliver-message
Use the HTML5 doctype and specify the character set explicitly
[rails.git] / script / deliver-message
index 6dffea96cbff9633dcc023f9f8a6cc7937c18c2a..3fd641f8dbf40ddb76273ad2b8bf45a6e5c4dd73 100755 (executable)
@@ -22,19 +22,7 @@ message.update_attribute(:message_read, true) if message
 
 mail = Mail.new(STDIN.readlines.join)
 
-if mail.multipart?
-  body = mail.html_part || mail.text_part
-else
-  body = mail
-end
-
-message = Message.new({
-  :sender => from,
-  :recipient => to,
-  :sent_on => mail.date.new_offset(0),
-  :title => mail.subject.sub(/\[OpenStreetMap\] */, ""),
-  :body => body.decoded
-}, :without_protection => true)
+message = Message.from_mail(mail, from, to)
 message.save!
 
 Notifier.message_notification(message).deliver