Hello
Can I send email in background by passing parameters like receiver email id , subject , body text using below method
https://docs.microsoft.com/en-us/dynamics365/customer-engagement/web-api/sendemail?view=dynamics-ce-...
As I understand, you want to send an email from PowerApps Portal.
The link which you have provided is for Dynamics 365, not for PowerApps Portal.
Can you explain your requirement in details? So, some one can help you.
Like, you want to send an email on create of record or on click of custom button, etc.
Hi @hardikv
Yes I want to send email in background from PowerApps Portal
My Details Requirement is as below
1. If user A added some records from portal then I want to send email to Users X and User Y
2. If user B added some records from portal then I want to send email to User P and User Q
So I am looking for such solution that I will pass parameters to any function/Web API like receiver email, subject , email body and mail will be send to that users in background
Hello @hardikv
Can I reference bellow link for adding record in Email entity using web API and Create action
While calling API all parameters will be send like 'to', 'from', 'subject' , 'message'
https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/reference/entities/email
You can achieve your requirement using Http Trigger method PowerAutomate.
Please refer below blogs to create Power Automate: https://medium.com/@zaab_it/microsoft-flow-send-email-from-http-request-f6577ad46b2c
After creation of power automate, you will get HTTP POST URL. Then you can add that url in httpTriggerUrl variable in below code.
function sendEmail(){
var objEmail = {};
objEmail.subject = "This is subject";
objEmail.to = "receiver@outlook.com";
objEmail.body = "This is body";
var stringJSON = JSON.stringify(objEmail);
var httpTriggerUrl = "https://prod-29.westus.logic.azure.com:443/workflows/5192b9bc428746ec93b21e6c8f9d0fe7/triggers/manual/path";
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
datatype: "json",
url: httpTriggerUrl,
data: stringJSON,
async: true,
beforeSend: function (XmlHttpRequest) {
XmlHttpRequest.setRequestHeader("Accept", "application/json");
XmlHttpRequest.setRequestHeader("Content-Type", "application/json; charset=utf-8");
XmlHttpRequest.setRequestHeader("OData-MaxVersion", "4.0");
XmlHttpRequest.setRequestHeader("OData-Version", "4.0");
},
success: function (data, textStatus, XmlHttpRequest) {
alert("success");
},
error: function (xmlHttpRequest, textStatus, errorThrown) {
alert(xmlHttpRequest.responseJSON.error.message);
}
});
}
You have to add this code in Page's localized content. You also have to add button in your web page.
<button onclick="sendEmail();">Send Email</button>
--------------------------
If you like this post, give a Thumbs up. Where it solved your query, Mark as a Solution so it can help other people!