anny/laravel-scaleway-tem

A Laravel package to extend mail with Scaleway transactional email

Maintainers

Package info

github.com/anny-co/laravel-scaleway-tem

pkg:composer/anny/laravel-scaleway-tem

Statistics

Installs: 12 445

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

1.0.2 2025-10-28 18:24 UTC

This package is auto-updated.

Last update: 2026-02-28 19:09:20 UTC


README

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.

'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:

'scaleway' => [
    'transport' => 'scaleway',
    ]