2
有沒有一種簡單的方法來指導TMail使用「quoted-printable」編碼身體?我只能在那裏看到解碼內容的方法,而不是創建它。紅寶石電子郵件編碼和引用內容
有沒有一種簡單的方法來指導TMail使用「quoted-printable」編碼身體?我只能在那裏看到解碼內容的方法,而不是創建它。紅寶石電子郵件編碼和引用內容
你只是使用TMail
,或者你是否使用ActionMailer
?它看起來像TMail
本身不具備編碼爲quoted-printable
的能力。但是,看起來ActionMailer
確實有這種能力。
看起來TMail
允許您設置Content-Transfer-Encoding
標題如下: -
mail = TMail::Mail.new
mail.transfer_encoding = "quoted-printable"
但是看起來,這實際上並不編碼體。
您可以看到ActionMailer
設置此標頭here。 quoted-printable
似乎是ActionMailer
的默認值。
ActionMailer
將ActionMailer::Quoting::quoted_printable方法編碼爲quoted-printable
。也許你可以利用這個......?
看來,這些天,你會使用Mail :: Encodings :: QuotedPrintable.encode – 2013-01-04 10:39:48