Closed princejohnsantillan closed 4 months ago
Every other mailer transport can have multiple instances in Laravel. This change is to allow for that.
Example:
'mailers' => [ 'mailersend' => [ 'transport' => 'mailersend', 'api_key' => 'prod-key', ], 'mailersend-staging' => [ 'transport' => 'mailersend', 'api_key' => 'staging-key', ], ]
@princejohnsantillan thank you for the contribution
Every other mailer transport can have multiple instances in Laravel. This change is to allow for that.
Example: