kohana email
1.0.0
Mit Kohana 3.3 und Koseven kompatibles E-Mail-Modul mit SwiftMailer oder PHPMailer.
composer install
APPPATH/bootstrap.php
ein: Kohana:: modules ( array (
...
' email ' => MODPATH . ' email ' ,
...
));
composer require svenbw/kohana-email:dev-master
APPPATH/bootstrap.php
falls noch nicht geschehen: require DOCROOT . ' /vendor/autoload.php ' ;
Kohana:: modules ( array (
...
' email ' => DOCROOT . ' /vendor/svenbw/kohana-email ' ,
...
));
Senden Sie eine Nachricht an einen Empfänger
$ mailer = Email:: connect ();
$ mailer -> send (
array ( ' [email protected] ' , ' To recipient ' ),
array ( ' [email protected] ' , ' The sender ' ),
' Test-email ' ,
' <i>Test email</i> ' ,
TRUE );
Es ist möglich, eine Nachricht mit verkettenden Anrufen zu erstellen.
$ mailer = Email:: factory ();
$ mailer
-> to ( ' [email protected] ' , ' To recipient ' )
-> from ( ' [email protected] ' , ' The sender ' )
-> subject ( ' Test-email ' )
-> html ( ' <i>Test email body</i> ' )
-> send ();