innoge/laravel-msgraph-mail
Composer 安装命令:
composer require innoge/laravel-msgraph-mail
包简介
Laravel Mail driver for Microsoft Office 365 using the MSGraph API
README 文档
README
This package provides a Microsoft Graph mail driver for Laravel. It is an alternative when you don't want to use the deprecated and unsecure Basic Auth SMTP driver with Microsoft Office 365.
Installation
You can install the package via composer:
composer require innoge/laravel-msgraph-mail
Configuration
Register the Azure App
Microsoft Azure AD Configuration
I have written a detailed Blog Post how you can configure your Microsoft Azure AD Tenant. Sending Mails with Laravel and Microsoft Office 365 the secure way
I want to figure it out on my own
You need to register an Azure App in your Azure AD tenant. You can do this by following the steps in the Microsoft Graph documentation.
After creating the App you have to add the following permissions to the App: Mail.Send (Application permission) you will find it under the "Microsoft Graph" section.
Now you have to Grant Admin Consent for the App. You can do this by following the steps in the Microsoft Graph documentation.
Configuring your Laravel app
First you need to add a new entry to the mail drivers array in your config/mail.php configuration file:
'microsoft-graph' => [ 'transport' => 'microsoft-graph', 'client_id' => env('MICROSOFT_GRAPH_CLIENT_ID'), 'client_secret' => env('MICROSOFT_GRAPH_CLIENT_SECRET'), 'tenant_id' => env('MICROSOFT_GRAPH_TENANT_ID'), 'from' => [ 'address' => env('MAIL_FROM_ADDRESS'), 'name' => env('MAIL_FROM_NAME'), ], 'save_to_sent_items' => env('MAIL_SAVE_TO_SENT_ITEMS', false), ],
For the client_id, client_secret and tenant_id you need to use the values from the Azure App you created in the
previous step.
The save_to_sent_items option in Microsoft Graph refers to a parameter that determines whether a sent email should be saved to the sender's "Sent Items" folder within their mailbox. When this option is set to true, the email will be automatically saved to the "Sent Items" folder, providing a record of the communication. Conversely, when it's set to false, the email will not be saved to the "Sent Items" folder.
By default, the save_to_sent_items option is set to false, which means that emails sent through Microsoft Graph won't be saved in the sender's "Sent Items" folder unless explicitly specified otherwise. This behavior can be useful in scenarios where you might want more control over which emails are saved as sent items, perhaps to reduce clutter or ensure confidentiality.
Now you can switch your default mail driver to the new microsoft-graph driver by setting the env variable:
MAIL_MAILER=microsoft-graph
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
innoge/laravel-msgraph-mail 适用场景与选型建议
innoge/laravel-msgraph-mail 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 439.92k 次下载、GitHub Stars 达 77, 最近一次更新时间为 2023 年 02 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「innoge」 「laravel-msgraph-mail」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 innoge/laravel-msgraph-mail 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 innoge/laravel-msgraph-mail 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 innoge/laravel-msgraph-mail 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This package helps prevent performance problems with frequent Policy calls within your application lifecycle.
A package to generate fake input data for Filament forms.
A package for developing MCP Servers with Laravel.
Alfabank REST API integration
A Laravel package as streamlined solution to utilize the speculation rules api.
Laravel Mail driver for Microsoft Office 365 using the MSGraph API
统计信息
- 总下载量: 439.92k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 77
- 点击次数: 25
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-02-13