Service provider for laravel which provide Mirfalah Swift_Transport implementation
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
0nepeop1e 1adbc5afbe init 4年前
src init 4年前
.gitignore init 4年前
README.md init 4年前
composer.json init 4年前

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": "vcs",
      "url": "https://git.mirfalah.my/mirfalah-tech/sendmail-swift-transport.git"
    },
    {
      "type": "vcs",
      "url": "https://git.mirfalah.my/mirfalah-tech/laravel-swift.git"
    }
  ]
}

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=""