We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I read that only are supported UTF8 characters without RFC 2047...
How can I write in the subject words with vowels with tíldes and ñ?
All the sources of the project are in ISO8859-1, so when preparing the email I do:
... $httpClient = new GuzzleAdapter(new Client()); $sparky = new SparkPost($httpClient, ['key'=>"1234567890abcdef1234567890abcdef12345678"]); $promise = $sparky->transmissions->post([ 'content' => [ 'from' => ['name' => $from_name, 'email' => $from_email], 'subject' => utf8_encode($subject), 'html' => utf8_encode($html), 'text' => '{{user}}: html not supported', ], 'substitution_data' => ['user' => $user], 'recipients' => [ [ 'address' => ['name' => $user, 'email' => $email], ], ], ]);
but latin1 characters in then subject display wrong and, if I dont use utf8_encode on subject, I have an exception.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I read that only are supported UTF8 characters without RFC 2047...
How can I write in the subject words with vowels with tíldes and ñ?
All the sources of the project are in ISO8859-1, so when preparing the email I do:
but latin1 characters in then subject display wrong
and, if I dont use utf8_encode on subject, I have an exception.
The text was updated successfully, but these errors were encountered: