定制 codewrap/laravel-microsoft-graph-mailer 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

codewrap/laravel-microsoft-graph-mailer

最新稳定版本:v1.1.0

Composer 安装命令:

composer require codewrap/laravel-microsoft-graph-mailer

包简介

Laravel mail driver for Microsoft Graph API.

README 文档

README

A Laravel mail driver that sends email via the Microsoft Graph API using OAuth2 client credentials. Zero external dependencies beyond Laravel itself.

Requirements

  • PHP 8.2+
  • Laravel 11, 12, or 13
  • An Azure AD / Entra ID app registration with Mail.Send application permission

Installation

composer require codewrap/laravel-microsoft-graph-mailer

Azure AD Setup

  1. Go to Azure Portal > App registrations > New registration
  2. Name your app (e.g. "My App Mailer"), select Single tenant
  3. Go to API permissions > Add permission > Microsoft Graph > Application permissions > Mail.Send > Grant admin consent
  4. Go to Certificates & secrets > New client secret — copy the secret value
  5. From the Overview page, copy the Application (client) ID and Directory (tenant) ID

Restrict Sender Addresses (Recommended)

By default, Mail.Send allows sending as any mailbox in your tenant. To restrict which mailboxes the app can send from, configure an Application Access Policy in Exchange Online:

New-ApplicationAccessPolicy -AppId <client-id> -PolicyScopeGroupId <mail-enabled-security-group> -AccessRight RestrictAccess

Configuration

Add the mailer to config/mail.php:

'mailers' => [
    'microsoft-graph' => [
        'transport' => 'microsoft-graph',
        'tenant' => env('MAIL_MSGRAPH_TENANT'),
        'client' => env('MAIL_MSGRAPH_CLIENT'),
        'secret' => env('MAIL_MSGRAPH_SECRET'),
        'save_to_sent_items' => env('MAIL_MSGRAPH_SAVE_TO_SENT', true),
    ],
],

Add to your .env:

MAIL_MAILER=microsoft-graph
MAIL_MSGRAPH_TENANT=your-tenant-id
MAIL_MSGRAPH_CLIENT=your-client-id
MAIL_MSGRAPH_SECRET=your-client-secret
MAIL_FROM_ADDRESS=noreply@yourdomain.com
MAIL_FROM_NAME="Your App"

The MAIL_FROM_ADDRESS must be a valid mailbox in your Microsoft 365 tenant.

Usage

Once configured as the default mailer, all Mail::send() / Mail::to() calls use Microsoft Graph automatically. No code changes needed.

Limitations

  • 3 MB attachment limit — Direct file attachments in sendMail are limited to 3 MB. Attachments between 3-150 MB require a draft + upload session flow (not yet supported).
  • X-Message-ID — Graph's sendMail returns no message ID. The driver generates a local correlation UUID, not an Exchange message ID.

National Clouds

For national cloud deployments (US Gov, China), override the API endpoints in your .env:

MSGRAPH_API_BASE_URL=https://graph.microsoft.us/v1.0
MSGRAPH_AUTH_URL=https://login.microsoftonline.us

License

MIT

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-06-09

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固