First, Thank you for adding chatbots to your web interfaces that help us ask questions and getting answers quickly like each and every website in the world, instead of searching for half an hour trying to find a way to contact you !!
Now, my question is:
I am using Microsoft Graph rest API v1.0 in order to send emails from our solution. I am using postman application for testing and emails are being sent successfully. The problem is that we want to use object "from" to send email from another sender and by setting another name; The administrator has granted access to send email as another user and it worked successfully, but I am unable to change the sender name; Below is an example of the body parameters:
{
"message": {
"subject": "Test",
"body": {
"contentType": "Html",
"content": "Hello, this is a test to check the sender's name"
},
"from": {
"emailAddress": {
"name" :"No Replyy",
"address": "noreply@.."
}
},
"toRecipients": [
{
"emailAddress": {
"address": "..."
}
}
]
}
}
The email is being sent using noreply@.. but the email name is not changing to "No Replyyy"; Can you help me to solve the issue?
Thank you in advance.