omarusman / laravel-docmail by omarusman
forked from hpolthof/laravel-docmail

An laravel implementation for Docmail.
30
0
2
Package Data
Maintainer Username: omarusman
Maintainer Contact: hello@omarusman.com (Omar Usman)
Package Create Date: 2017-02-06
Package Last Update: 2017-02-28
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:04:12
Package Statistics
Total Downloads: 30
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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 omarusman/laravel-docmail

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

\Oozman\Docmail\DocmailServiceProvider::class,

Then add the following facade to your list of aliases:

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

Usage

\Docmail::sendFile(storage_path('temp/test.pdf'), function(\Oozman\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.