Skip to contentSkip to navigationSkip to topbar
On this page

Send Mime Messages With SendGrid



Sending MIME Mail

sending-mime-mail page anchor

Some mail clients, such as Outlook and Thunderbird, appear to insert double spacing line breaks at every line. The reason is that those mail clients set the 'content-transfer-encoding' in MIME to 'quoted-printable' which adds Carriage Return Line Feed (CRLF) line breaks to the source content of the email which are characters interpreted by these mail clients. To alleviate this problem, please do the following:

  1. If you can customize the MIME settings for your email, set the 'Content-Transfer-Encoding' to '7bit' instead of 'Quoted-Printable.'
  2. Ensure that your content follows the line length limits.
  3. Line breaks appear as CRLF characters in the source of an email with the character combination of " =0D" in the source of an email. These characters appear only with 'quoted-printable' (Content-Transfer-Encoding set in MIME) emails. Email clients such as Outlook and Thunderbird render these characters which resulting in additional breaks in the content of your emails.

Use the MIME layout in your email below when sending through SendGrid. It is best to reference files using separate links to download since it lowers the percentage of spam threshold for most domains you are sending to.


Sending email with multiple content types (text+html)

sending-email-with-multiple-content-types-texthtml page anchor
1
email = SendGrid::Mail.new
2
3
email.from = SendGrid::Email.new(email: 'team@email.com')
4
5
email.subject = "App - Reset Password"
6
7
per = SendGrid::Personalization.new
8
9
per.to = SendGrid::Email.new(email: user.email, name: user.name)
10
11
per.substitutions = SendGrid::Substitution.new(key: "user_name", value: user.name.split(" ")[0].capitalize)
12
13
per.substitutions = SendGrid::Substitution.new(key: "reset_link", value: some_func(token, email: user.email))
14
15
email.personalizations = per
16
17
email.contents = Content.new(type: 'text/html', value: 'test')
18
19
email.contents = SendGrid::Content.new(type: 'text/plain', value: "Hi #{user.name}.. Click the following link to reset your password.. #{function_reset(token, email: user.email)}... This link will expire in two hours.. If you did not request your password to be reset, please ignore this email and your password will stay as it is.")
20
21
email.template_id = "6ede18bb-2eba-4958-8a57-43a58a559a0a"
22
23
response = @@sg.client.mail._('send').post(request_body: email.to_json)
24
25
puts response.status_code
26
27
puts response.body
28
29
puts response.headers