承接 adbros/nette-microsoft-mailer 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

adbros/nette-microsoft-mailer

最新稳定版本:v0.2

Composer 安装命令:

composer require adbros/nette-microsoft-mailer

包简介

README 文档

README

This library provides e-mail sending via Microsoft Graph API.

main workflow Licence Downloads this Month Downloads total Latest stable

How to install

composer require adbros/nette-microsoft-mailer

Azure setup

Register an application in Azure Portal

  1. Go to Azure Portal
  2. Go to Microsoft Entra ID -> App registrations
  3. Click on "New registration"
  4. Fill in the form:
    • Name: Your app name
    • Supported account types: Accounts in this organizational directory only (Single tenant)
    • Redirect URI: http://localhost
  5. Save
    • Application (client) ID
    • Directory (tenant) ID
    • Client secret (create a new one in the "Certificates & secrets" tab)

API permissions

  1. Go to API permissions
  2. Click on "Add a permission"
  3. Select "Microsoft Graph" => Application permissions
  4. Select Mail.Send
  5. Click on "Grant admin consent"

Register mailer

Just rewrite the default mailer service in your neon file.

services:
	mail.mailer: Adbros\MicrosoftMailer\MicrosoftMailer(
		tenantId: 'tenant_id'
		clientId: 'client_id'
		clientSecret: 'client_secret'
		defaultSender: 'default_sender_email'
	)

Usage

Use as standard Nette Mailer.

<?php

use Nette\Mail\Mailer;
use Nette\Mail\Message;

class SomeClass
{

    public function __construct(
        private Mailer $mailer,
    ) 
    {    
    }
    
    public function sendEmail(): void
    {
        $message = new Message();
        $message->setSubject('Hello World!');
        $message->setHtmlBody('<h1>Hello World!</h1>');
        $message->addTo('john.doe@example.org');
        
        $this->mailer->send($message);
    }
    
}

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-09-23