Service provider for laravel which provide Mirfalah Swift_Transport implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
0nepeop1e 87cd93d729 update composer.json and readme 3 years ago
src init 4 years ago
.gitignore init 4 years ago
README.md update composer.json and readme 3 years ago
composer.json update composer.json and readme 3 years ago

README.md

mirfalah/laravel-swift

Service provider for laravel which provide Mirfalah Swift_Transport implementation


Installation

Add following repository records into composer.json

{
  "repositories": [
    {
      "type": "composer",
      "url": "https://composer.mirfalah.my"
    }
  ]
}

Then execute

composer require mirfalah/laravel-swift ^1.0

Usage

# file: config/mail.php
return [
    ...
    'mirfalah' => [
        'api_key'=> env('MIRFALAH_SENDMAIL_APIKEY'),
        'secret'=> env('MIRFALAH_SENDMAIL_SECRET'),
        'endpoint' => env(
            'MIRFALAH_SENDMAIL_ENDPOINT',
            'https://pahangmail.mirfalah.my/mirfalah-sendmail/index.php'
        )
    ]
    ...
];
# file: .env
MAIL_DRIVER=mirfalah
MIRFALAH_SENDMAIL_APIKEY=""
MIRFALAH_SENDMAIL_SECRET=""