请教各位大虾们,如何在用 ruby mail 发出的邮件 body 中直接显示图片?
试过:
Mail.deliver do
to 1@1.com'
from [email protected]'
subject 'testing sendmail'
html_part do
content_type 'image/jpeg'
body File.read('c:\\a.jpeg')
end
end
但是邮件 body 中什么都没显示,console log
Non US-ASCII detected and no charset defined.
Defaulting to UTF-8, set your own if this is incorrect.
不知道该用什么样的 content_type?