PHP Classes

File: vendor/swiftmailer/swiftmailer/doc/japanese.rst

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/swiftmailer/swiftmailer/doc/japanese.rst   Download  
File: vendor/swiftmailer/swiftmailer/doc/japanese.rst
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 5 years ago
Size: 552 bytes
 

Contents

Class file image Download
Using Swift Mailer for Japanese Emails ====================================== To send emails in Japanese, you need to tweak the default configuration. Call the ``Swift::init()`` method with the following code as early as possible in your code:: Swift::init(function () { Swift_DependencyContainer::getInstance() ->register('mime.qpheaderencoder') ->asAliasOf('mime.base64headerencoder'); Swift_Preferences::getInstance()->setCharset('iso-2022-jp'); }); /* rest of code goes here */ That's all!