kohana email
1.0.0
Module de messagerie compatible Kohana 3.3 et Koseven utilisant SwiftMailer ou PHPMailer.
composer install
APPPATH/bootstrap.php
: Kohana:: modules ( array (
...
' email ' => MODPATH . ' email ' ,
...
));
composer require svenbw/kohana-email:dev-master
APPPATH/bootstrap.php
si ce n'est déjà fait : require DOCROOT . ' /vendor/autoload.php ' ;
Kohana:: modules ( array (
...
' email ' => DOCROOT . ' /vendor/svenbw/kohana-email ' ,
...
));
Envoyer un message à un destinataire
$ mailer = Email:: connect ();
$ mailer -> send (
array ( ' [email protected] ' , ' To recipient ' ),
array ( ' [email protected] ' , ' The sender ' ),
' Test-email ' ,
' <i>Test email</i> ' ,
TRUE );
Il est possible de créer un message avec enchaînement d'appels.
$ mailer = Email:: factory ();
$ mailer
-> to ( ' [email protected] ' , ' To recipient ' )
-> from ( ' [email protected] ' , ' The sender ' )
-> subject ( ' Test-email ' )
-> html ( ' <i>Test email body</i> ' )
-> send ();