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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
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:

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
Requires php Version >=7.0.0
tigron/skeleton-template Version *
symfony/mailer Version ^5.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tigron/skeleton-email contains the following files

Loading the files please wait ....