https://github.com/anny-co/laravel-scaleway-tem
Adding Scaleway TEM to Laravel
https://github.com/anny-co/laravel-scaleway-tem
laravel scaleway
Last synced: 4 months ago
JSON representation
Adding Scaleway TEM to Laravel
- Host: GitHub
- URL: https://github.com/anny-co/laravel-scaleway-tem
- Owner: anny-co
- License: mit
- Created: 2024-09-19T15:56:51.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-24T21:50:49.000Z (9 months ago)
- Last Synced: 2025-01-30T16:43:31.401Z (5 months ago)
- Topics: laravel, scaleway
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Scaleway TEM mailer
This package provides a simple way to send emails using the Scaleway TEM service directly from your Laravel application.## Installation
```
composer require anny/laravel-scaleway-tem
```
This package adds automatically the Scaleway mailer to your mail config.
First you need to add the credentials for the Scaleway API to your services.php config file.```php
'scaleway' => [
'project_id' => env('SCALEWAY_PROJECT_ID'),
'api_key' => env('SCALEWAY_API_KEY'),
'region' => env('SCALEWAY_REGION', 'fr-par'),
]
```After that, extend you mail config with the following code:
```php
'scaleway' => [
'transport' => 'scaleway',
]
```