Alert This post is over a year old, some of this information may be out of date.

Sending mails with embedded images via the Microsoft Graph

The Microsoft Graph keeps getting better and better. Since it was released, a lot more endpoints and functionality has been added. In one of my applications I make use of the sendMail endpoint to send notification about progress updates. I wanted to improve the notification mail by embedding images into the mails. The information for this can be found in the documentation of the Microsoft Graph, but it involves going through a couple of pages and trying things out yourself as there is not a sample available.

Info: these are some useful pages:

In this article I walk you through the process how you can send mails via the Microsoft Graph API with embedded images.

Mail message model

It all starts with the model of your mail message. All the properties that you can pass for a mail message can be found here: http://graph.microsoft.io/en-us/docs/api-reference/v1.0/api/user_sendmail

On the documentation page you see a JSON sample object with its properties. Of course you do not to include all these properties when you want to send a mail. Also the sample shows you how to send an attachment, but not how to embed an image. The answer for this can be found in the fileAttachment resource type documentation. Here are the essential properties you will need in your mail model:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using Newtonsoft.Json;

namespace ES.SendMail.Models
{
    public class Mail
    {
        public Message message { get; set; }
        public bool saveToSentItems { get; set; }
    }

    public class Message
    {
        public string subject { get; set; }
        public Body body { get; set; }
        public Torecipient[] toRecipients { get; set; }
        public bool hasAttachments { get; set; }
        public Attachment[] attachments { get; set; }
    }

    public class Body
    {
        public string contentType { get; set; }
        public string content { get; set; }
    }

    public class Torecipient
    {
        public Emailaddress emailAddress { get; set; }
    }

    public class Emailaddress
    {
        public string name { get; set; }
        public string address { get; set; }
    }

    public class Attachment
    {
        [JsonProperty("@odata.type")]
        public string odatatype { get; set; }
        public string contentBytes { get; set; }
        public string contentId { get; set; }
        public string contentLocation { get; set; }
        public string contentType { get; set; }
        public string name { get; set; }
    }
}

The most important part about the mail model is the Attachment class. This contains all the required properties for successfully including images to the mail.

Important: it is important to include the @odata.type for your attachment. If you do not include it, your request ends up in a bad request. If you want to embed an image, it has to be set to #microsoft.graph.fileAttachment.

Creating the mail message with an embedded image

If you already developed an application in the past where you were required to embed images in mails. You will know you have to work with Content-ID or CID references in the HTML mark-up. Once these CID references are in place, you have to link the images as a resource and specify the CID per attachment. This is no different when working with the Microsoft Graph. As you can see in the model, you can also specify the contentId property to the attachment.

First of all, you create the mail mark-up like this:

1
var mailMarkup = @"<h1>A mail with an embedded image <img src='cid:thumbsUp' alt='Thumbs up' /></h1>";

Note: as the image source I specified CID:thumbsUp. You will have to specify this CID reference when you add the attachment to the mail message.

Here is a sample of how you can build the mail message with the model specified above and the embedded image:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
var mail = new Mail
{
    message = new Message
    {
        toRecipients = new[]
        {
            new Torecipient
            {
                emailAddress = new Emailaddress
                {
                    address = email,
                    name = email
                }
            }
        },
        body = new Body
        {
            content = mailMarkup,
            contentType = "HTML"
        },
        subject = "Mail with an embedded image",
        hasAttachments = true,
        attachments = new[]
        {
            new Attachment
            {
                odatatype = "#microsoft.graph.fileAttachment",
                contentBytes = contentBytes,
                contentType = contentType,
                contentId = "thumbsUp",
                name = "thumbs-up.png"
            }
        }
    },
    saveToSentItems = true
};

Important: in attachment I specify contentBytes and contentType of the image. ContentBytes is the binary contents of the file, also known as Base64. ContentType is the image type like image/png or image/jpeg.

Sending out the mail

Now you only need to send out the mail message. This can be done like this:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Send the mail
var client = new RestClient(Resourse);
var request = new RestRequest($"/v1.0/users/{email}/microsoft.graph.sendMail", Method.POST);
request.AddHeader("Authorization", "Bearer " + accessToken);
request.AddHeader("Accept", "application/json");
// Remove null objects from the serialized JSON object
var jsonBody = JsonConvert.SerializeObject(mail, Formatting.None, new JsonSerializerSettings
{
    NullValueHandling = NullValueHandling.Ignore
});
request.AddParameter("application/json", jsonBody, ParameterType.RequestBody);
var response = client.Execute(request);

Note: this code makes use of a NuGet package called RestSharp which makes it easier to do rest calls from C#. You are free to use whatever you want.

When you run this code, it would give you the following result:

Show image Mail message with an embedded image
Mail message with an embedded image

Sample application

I have created a sample application for this. You can find it on GitHub: https://github.com/estruyf/Mail-Embed-Images-with-Microsoft-Graph

If you want to try this application, you will first have to create an Azure AD application and fill in the Client ID and Redirect URL in the app.config file. You will also have to add your tenant ID. This can be the domain name (tenant.onmicrosoft.com) or the ID.

Comments

Back to top