11.2 HTML-E-Mails
content type
Die einfachste Art und Weise, um E-Mails im HTML-Format zu versenden, ist, im Mailer-Model die Variable @content_type auf »text/html« zu setzen.
Listing app/models/contact_mailer.rb
def message(contact_message, sent_at = Time.now)
@subject = 'Neue Kontaktanfrage'
@body = {:contact_message => contact_message}
@recipients = 'info@railsbuch.de'
@from = contact_message.email
@sent_on = sent_at
@headers = {}
@content_type = 'text/html'
end
Ihre Meinung
Wie hat Ihnen das Openbook gefallen? Wir freuen uns immer über Ihre Rückmeldung. Schreiben Sie uns gerne Ihr Feedback als E-Mail an kommunikation@rheinwerk-verlag.de.