kohana email
1.0.0
โมดูลอีเมลที่เข้ากันได้กับ Kohana 3.3 และ Koseven โดยใช้ SwiftMailer หรือ PHPMailer
composer install
APPPATH/bootstrap.php
: Kohana:: modules ( array (
...
' email ' => MODPATH . ' email ' ,
...
));
composer require svenbw/kohana-email:dev-master
APPPATH/bootstrap.php
หากยังไม่ได้ดำเนินการ: require DOCROOT . ' /vendor/autoload.php ' ;
Kohana:: modules ( array (
...
' email ' => DOCROOT . ' /vendor/svenbw/kohana-email ' ,
...
));
ส่งข้อความถึงผู้รับ
$ mailer = Email:: connect ();
$ mailer -> send (
array ( ' [email protected] ' , ' To recipient ' ),
array ( ' [email protected] ' , ' The sender ' ),
' Test-email ' ,
' <i>Test email</i> ' ,
TRUE );
สามารถสร้างข้อความด้วยการโทรแบบผูกมัดได้
$ mailer = Email:: factory ();
$ mailer
-> to ( ' [email protected] ' , ' To recipient ' )
-> from ( ' [email protected] ' , ' The sender ' )
-> subject ( ' Test-email ' )
-> html ( ' <i>Test email body</i> ' )
-> send ();