Hi,
The api works great, but when I send an email with some special characters in the subject the result is not perfect.
For instance:
Técnica gets translated to Teìcnica
I'm sending this in the body of the request:
$message = [
'subject' => $subject,
"body" => [
"contentType" => "TEXT",
"content"=> $text
],
"toRecipients" => [
[
"emailAddress" => [
"address" => $email_to
]
]
]
];
Is there any encoding parameter that I should set?
Hi,
The api works great, but when I send an email with some special characters in the subject the result is not perfect.
For instance:
Técnica gets translated to Teìcnica
I'm sending this in the body of the request:
Is there any encoding parameter that I should set?