hpolthof/laravel-docmail

An laravel implementation for Docmail.
5,223 2
Install
composer require hpolthof/laravel-docmail
Latest Version:v0.1.1
PHP:>=5.4.0
License:MIT
Last Updated:Feb 28, 2017
Links: GitHub  ·  Packagist
Maintainer: hpolthof

Laravel Package for Docmail

This packages provides an interface to the mail services of Docmail. The provide their services in many countries and are able to process mailings at fair rates.

Installing the package

You can install this package using Composer. Go to your commandline and run in the root of your project:

composer require hpolthof/laravel-docmail

Next, open your config/app.php file and add the following service provider:

\Hpolthof\Docmail\DocmailServiceProvider::class,

Then add the following facade to your list of aliases:

'Docmail'   => \Hpolthof\Docmail\DocmailFacade::class,

Usage

\Docmail::sendFile(storage_path('temp/test.pdf'), function(\Hpolthof\Docmail\DocmailService $docmail) {
    // Name the mailing, defaults to the OrderRef.
    $docmail->getMailing()->setMailingName('Test Mailing');
    
    // Change the filename.
    $docmail->getTemplate()->setFileName('MyPrettyLetterFilename.pdf');
    
    // Add all the addresses you want.
    $docmail->addBasicAddress('John Doe', 'Testersroad 3', '32444 Testersvalley');

    // If you have a discountcode you can apply it.
    $docmail->getMailing()->setDiscountCode('');
});

API Reference

For the detailed API Reference please refer to the API Documentation.

Important notice

Although you can run the interaction with Docmail, within your controller. It is advised to make use of Jobs that are processed in the background. Although the processing is mostly done within a few seconds, the processing at the Docmail server can take up to a few minutes. Therefor background Jobs should be used to maintain optimal performance.

Read more on creating Jobs in the Laravel Documentation.

Related Packages

omarusman/laravel-docmail

An laravel implementation for Docmail.

32 0
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
reliese/laravel

Reliese Components for Laravel Framework code generation.

3,954,390 1,705