0nepeop1e 87cd93d729 update composer.json and readme | 4 lat temu | |
---|---|---|
src | 4 lat temu | |
.gitignore | 4 lat temu | |
README.md | 4 lat temu | |
composer.json | 4 lat temu |
Service provider for laravel which provide Mirfalah Swift_Transport implementation
Add following repository records into composer.json
{
"repositories": [
{
"type": "composer",
"url": "https://composer.mirfalah.my"
}
]
}
Then execute
composer require mirfalah/laravel-swift ^1.0
# 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=""