mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
⚡ Allow usage of special characters on SES (#2068)
This commit is contained in:
@@ -1091,9 +1091,10 @@ export class AwsSes implements INodeType {
|
||||
];
|
||||
|
||||
if (isBodyHtml) {
|
||||
params.push(`Message.Body.Html.Data=${encodeURI(message)}`);
|
||||
params.push(`Message.Body.Html.Data=${encodeURIComponent(message)}`);
|
||||
params.push(`Message.Body.Html.Charset=UTF-8`);
|
||||
} else {
|
||||
params.push(`Message.Body.Text.Data=${encodeURI(message)}`);
|
||||
params.push(`Message.Body.Text.Data=${encodeURIComponent(message)}`);
|
||||
}
|
||||
|
||||
if (toAddresses.length) {
|
||||
|
||||
Reference in New Issue
Block a user