2017 © Pedro Peláez
 

kohana-module email

Email module for Kohana based on swiftmailer

image

app-skeleton/email

Email module for Kohana based on swiftmailer

  • Monday, November 18, 2013
  • by app-skeleton
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Email Module For Kohana 3.x

Factory-based email class. This class is a simple wrapper around Swiftmailer., (*1)

Usage

Create new messages using the Email::factory($subject, $message, $mime_type) method.
Add recipients, add sender, send message:, (*2)

$email = Email::factory('Hello, World', 'This is my body, it is nice.')
    ->to('person@example.com')
    ->from('you@example.com', 'My Name')
    ->send();        

You can also add HTML to your message:, (*3)

$email->message('<p>This is <em>my</em> body, it is <strong>nice</strong>.</p>', 'text/html');

Additional recipients can be added using the to(), cc(), and bcc() methods., (*4)

Additional senders can be added using the from() and reply_to() methods.
If multiple sender addresses are specified, you need to set the actual sender of the message using the sender() method.
Set the bounce recipient by using the return_path() method., (*5)

To access the Swiftmailer message directly, use the raw_message() method., (*6)

Configuration

Configuration is stored in config/email.php. Options are dependant upon transport method used., (*7)

Consult the Swiftmailer documentation for options available to each transport., (*8)

The Versions

18/11 2013

dev-3.3/develop

dev-3.3/develop https://github.com/app-skeleton/email

Email module for Kohana based on swiftmailer

  Sources   Download

BSD-3-Clause

The Requires

 

framework accounts kohana

18/11 2013

dev-3.3/master

dev-3.3/master https://github.com/app-skeleton/email

Email module for Kohana based on swiftmailer

  Sources   Download

BSD-3-Clause

The Requires

 

framework accounts kohana