Hi,
I am creating a message using the intercom API. I'm able to send the request, but the recipient sees the sender of the email as: firstname.lastname@company.intercom-mail.com
My question is that is it possible to configure intercom so that when the recipient sees the email address of the sender, it is the same as the actual email address of the admin? Rather than companyname.intercom-mail.com?
The curl request is below:
curl --location --request POST 'https://api.intercom.io/messages#39; \
--header 'Authorization: {Bearer token}' \
--header 'Content-Type: application/json' \
--data-raw '{
"message_type": "email",
"subject": "Email subject",
"body": "The body of the text message goes here.",
"template": "plain",
"from": {
"type": "admin",
"id": "{admin_id}"
},
"to": {
"type": "user",
"id": "{user_id}"
}
}'
Thank you,
Ashish