PHP Classes

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

Recommend this page to a friend!
  Classes of Renato Lucena   PHP Pokemon Script   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: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 676 bytes
 

Contents

Class file image Download
Using Swift Mailer for Japanese Emails ====================================== To send emails in Japanese, you need to tweak the default configuration. After requiring the Swift Mailer autoloader (by including the ``swift_required.php`` file), call the ``Swift::init()`` method with the following code:: require_once '/path/to/swift-mailer/lib/swift_required.php'; 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!