0
我有一個紅寶石的應用程序,我用這種格式的文檔http://ruby-doc.org/stdlib-2.0/libdoc/net/smtp/rdoc/Net/SMTP.html在發現發送電子郵件:紅寶石和發送電子郵件與NET :: SMTP:我如何強制字體?
這是一個示例代碼:
def send_notification(exception)
msgstr = <<-END_OF_MESSAGE
From: Exchange Errors <[email protected]>
To: Edmund Mai <[email protected]>
Subject: test message
Date: Sat, 23 Jun 2001 16:26:43 +0900
Message-Id: <[email protected]>
This is a test message.
END_OF_MESSAGE
Net::SMTP.start('your.smtp.server', 25) do |smtp|
smtp.send_message msgstr, '[email protected]', '[email protected]'
end
end
如何強制字體此電子郵件?我想強制它到信使新。
嗨賈斯汀,這不適用於Gmail。它不會自動獲取格式 – ishan
請嘗試使用CSS方法。 –
我意識到我錯過了「Content-type:text/html」標籤 – ishan