Download the PHP package tigron/skeleton-email without Composer
On this page you can find all versions of the php package tigron/skeleton-email. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tigron/skeleton-email
More information about tigron/skeleton-email
Files in tigron/skeleton-email
Download tigron/skeleton-email
More information about tigron/skeleton-email
Files in tigron/skeleton-email
Vendor tigron
Package skeleton-email
Short Description Email infrastructure for skeleton
License MIT
Package skeleton-email
Short Description Email infrastructure for skeleton
License MIT
Please rate this library. Is it a good library?
Informations about the package skeleton-email
skeleton-email
Description
This library contains the email functionality of Skeleton
Installation
Installation via composer:
composer require tigron/skeleton-email
composer require tigron/skeleton-template-twig
Howto
Set the path for emails
\Skeleton\Email\Config::$email_path = $some_very_cool_directory;
The email path must have the following structure
- media
- sample_media_dir1
- image1.png
- image2.png
- sample_media_dir2
- image3.png
- image4.png
- template
- email_type1
- html.twig
- subject.twig
- text.twig
- email_type2
- html.twig
- subject.twig
- text.twig
Each email type must have its own directory containing the following files:
- html.twig => the HTML version of the email
- subject.twig => The subject line of the email
- text.twig => The text version of the email
References to media in the mail content will be fetches from the media directory
Create a new mail:
$email = new \Skeleton\Email\Email('email_type1');
$email->set_sender('[email protected]', 'Test sender');
$email->add_to('[email protected]' [, 'to name' ]);
/**
* Optional: translate the mail with a defined Translation object
*/
$language = Skeleton\I18n\Language::get_by_id(2);
$application = 'email'; // Used to fetch the po file
$translation = Skeleton\I18n\Translation::get($language, $application);
$email->set_translation($translation);
/**
* Optional: add different recipient types
*/
$email->add_cc('[email protected]' [, 'cc name' ]);
$email->add_bcc('[email protected]' [, 'bcc name' ]);
/**
* Optional: add reply-to recipient
*/
$email->add_reply_to('[email protected]' [, 'reply-to name' ]);
/**
* Optional: attach file(s)
*/
$email->add_attachment(\Skeleton\File\File::get_by_id(1234));
$email->add_attachment_file('/some_very_cool_path/filename.ext');
/**
* Optional: Archive mailbox. Send a copy of every mail to a given mailbox
*/
\Skeleton\Email\Config::$archive_mailbox = '[email protected]';
/**
* Optional: Transport type. Send email using smtp or sendmail (default: sendmail)
* When smtp is used at least a host and port are required.
* Optionally you can also define which encryption is needed (ssl or tls)
* and if authentication is required (username, password).
*/
\Skeleton\Email\Config::$transport_type = 'smtp';
\Skeleton\Email\Config::$transport_smtp_config = [
'host' => 'smtp.example.com',
'port' => 25,
'encryption' => 'ssl',
'username' => 'foo',
'password' => 'bar'
];
/**
* Optional: Assign variables
*/
$email->assign('variable1', 'content1');
/**
* Send email
*/
$email->send();
All versions of skeleton-email with dependencies
PHP Build Version
Package Version
The package tigron/skeleton-email contains the following files
Loading the files please wait ....