rednucleus / emailsender
Sending Emails Through The Microsoft Graph API or Via SMTP
Requires
- php: ^8.1
- ext-json: *
- greew/oauth2-azure-provider: ^1.0
- guzzlehttp/guzzle: ^7.0.1 || ^7.2
- guzzlehttp/psr7: ^2.4
- laravel/framework: ^9.0
- phpmailer/phpmailer: ^6.8
- symfony/mailer: ^6.0
This package is auto-updated.
Last update: 2025-03-09 17:57:49 UTC
README
rednucleus/emailsender is a Laravel package that provides a simple way to send emails using either Microsoft Graph or SMTP. Follow the steps below to install and configure the package in your Laravel project.
Installation
To install the package, run the following command in your terminal:
composer require rednucleus/emailsender
If you have some issues with dependencies you can run this command instead:
composer require rednucleus/emailsender --with-all-dependencies
Configuration
- Set your Microsoft Graph or SMTP authentication keys in your
.env
file:
MS_CLIENT_ID=<Your MS client ID>
MS_CLIENT_SECRET=<Your MS client secret>
MS_TENANT_ID=<Your MS tenant ID>
MS_REFRESH_TOKEN=<Your MS refresh token>
MS_SENDER_TYPE=<Type of sender, either 'smtp' or 'msgraph'>
MS_CACHE=<Type of sender, either 'false' or 'true'>
You can enable token manager caching by setting the MS_CACHE
environment variable to true
. Please note that the caching feature is only available for msgraph
.
- Publish the configuration file by running the following command in your terminal:
php artisan vendor:publish --provider="rednucleus\Emailsender\RNSenderEmailServiceProvider"
This will create an emailsender.php
file in your config
directory.
- Configure the mailer by adding the following mailer configuration to your
config/mail.php
file:
'rnemailsender' => [
'transport' => 'rnemailsender',
'sender' => env('MS_SENDER_TYPE', 'smtp'),
'cache' => env('MS_CACHE', false),
],
Usage
To use the rednucleus/emailsender mailer in your application, follow these steps:
- Create a new mailable using the
make:mail
Artisan command:
php artisan make:mail ExampleMail
- Update the
build
method in your newExampleMail
class to include the content and subject of your email:
public function build()
{
return $this->subject('Example Subject')
->view('emails.example');
}
- In your application code, use the
Mail
facade to send the email using thernemailsender
mailer:
use Illuminate\Support\Facades\Mail;
Mail::to('example@example.com')->send(new ExampleMail());
And that's it! You should now be able to send emails using the rednucleus/emailsender package in your Laravel application.