In this article, We learn how to saved the composed mail into outlook draft using HTTP request in Logic Apps. I will show how to do it, and just follow the steps clearly.

For more updates please do Subscribe via Email:

  • Http URI is provided below.
POST -> https://graph.microsoft.com/v1.0/me/messages
  • Request Body

This the sample payload body string of the request.

{
    "subject":"Testing in Logic App",
    "importance":"Low",
    "body":{
        "contentType":"HTML",
        "content":"They were <b>awesome</b>!"
    },
    "toRecipients":[
        {
            "emailAddress":{
                "address":"[email protected]"
            }        
        }
    ]
}
  • This is the connector you can use for this process
  • Actual setup
    1. URI –  Uniform Resource Identifier (URI) is provided above, you can copy and paste that link on your connector.
    2. Method – Method request must be set as HTTP POST.
    3. Content-Type – set as application/json as default.
    4. Body – This is a payload body of the request.
      1. Subject
      2. Body
      3. Receiver
  • Body

Happy Learning..

Thank you for visiting my blog site. Hoping you learn more here. please feel free to comment and suggest if there is need to enhance and update. thank you.

Related Topics

Leave a Reply

Your email address will not be published. Required fields are marked *