All Projects → overtrue → laravel-mail-aliyun

overtrue / laravel-mail-aliyun

Licence: other
📧 Aliyun DrirectMail Transport for Laravel Application.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to laravel-mail-aliyun

aliyun-direct-mail
[DEPRECATED] 阿里云 DirectMail for Laravel.
Stars: ✭ 26 (-62.32%)
Mutual labels:  mail, aliyun, directmail
Laravel Mail Editor
MailEclipse ⚡ Laravel Mailable Editor!
Stars: ✭ 1,714 (+2384.06%)
Mutual labels:  mail, laravel-mail
sendcloud
SendCloud Mail SDK
Stars: ✭ 21 (-69.57%)
Mutual labels:  mail
javayh-platform
javayh-platform 使用Springboot2.2.6为开发脚手架,SpringCloud为云端服务框架,Nacos为注册中心、分布式配置管理中心,Oauth2协议实现统一授权,Mybatis作为持久层框架,提供了代码生成器,SQL防注入,SwaggerAPI文档,Redis 作为缓存服务等强大的功能
Stars: ✭ 32 (-53.62%)
Mutual labels:  mail
Meteor-Mailer
📮 Bulletproof email queue on top of NodeMailer with support of multiple clusters and servers setup
Stars: ✭ 21 (-69.57%)
Mutual labels:  mail
Mail
The Hoa\Mail library.
Stars: ✭ 24 (-65.22%)
Mutual labels:  mail
postal
✉️ A fully featured open source mail delivery platform for incoming & outgoing e-mail
Stars: ✭ 12,134 (+17485.51%)
Mutual labels:  mail
ilogtail
Fast and Lightweight Observability Data Collector
Stars: ✭ 1,035 (+1400%)
Mutual labels:  aliyun
vim-gnote
make your mailbox as a note place
Stars: ✭ 16 (-76.81%)
Mutual labels:  mail
aliyun-dts-subscribe-sdk-java
aliyun-dts-subscribe-sdk-java
Stars: ✭ 18 (-73.91%)
Mutual labels:  aliyun
wp-smtp
Simple package for handling WordPress SMTP with .env when using the Roots stack.
Stars: ✭ 31 (-55.07%)
Mutual labels:  mail
easymail
Easy way to install a mail server.
Stars: ✭ 60 (-13.04%)
Mutual labels:  mail
react-native-aliyun-playview
封装阿里云点播播放器与短视频上传功能
Stars: ✭ 24 (-65.22%)
Mutual labels:  aliyun
KP.GmailClient
A Gmail client for C#
Stars: ✭ 17 (-75.36%)
Mutual labels:  mail
Android-Email-App-using-Javamail-Api
An Android App to send mail without gamil/email interaction!
Stars: ✭ 19 (-72.46%)
Mutual labels:  mail
mailer
Generic mailer
Stars: ✭ 16 (-76.81%)
Mutual labels:  mail
waline
💬 A Simple, Safe Comment System
Stars: ✭ 1,145 (+1559.42%)
Mutual labels:  aliyun
yapople
Yet another POP3 email library
Stars: ✭ 22 (-68.12%)
Mutual labels:  mail
go-imap-idle
IDLE extension for go-imap
Stars: ✭ 30 (-56.52%)
Mutual labels:  mail
mlmmjadmin
A simple RESTful API server used to manage mlmmj (http://mlmmj.org) mailing list manager.
Stars: ✭ 39 (-43.48%)
Mutual labels:  mail

Laravel mail aliyun

📧 Aliyun DrirectMail Transport for Laravel Application.

Sponsor me

Installing

$ composer require overtrue/laravel-mail-aliyun -vvv

Configuration

API documention: https://help.aliyun.com/document_detail/29435.html

config/services.php

    'directmail' => [
        'key' => env('ALIYUN_ACCESS_KEY_ID'),
        'secret' => env('ALIYUN_ACCESS_KEY_SECRET'),
        'region_id' => env('ALIYUN_REGION_ID'),
        'from_address' => env('ALIYUN_FROM_ADDRESS'),
        'from_alias' => env('ALIYUN_FROM_ALIAS'),
    ],

AccessKeyID 和 AccessKeySecret 由阿里云官方颁发给用户的 AccessKey 信息(可以通过阿里云控制台用户信息管理中查看和管理).

Usage

Set default mail driver and configuration:

.env

MAIL_DRIVER=directmail

ALIYUN_ACCESS_KEY_ID=  #AccessKeyID
ALIYUN_ACCESS_KEY_SECRET= #AccessKeySecret
ALIYUN_REGION_ID= #RegionID: cn-hangzhou, ap-southeast-1, ap-southeast-2
ALIYUN_FROM_ADDRESS= #FromAddress
ALIYUN_FROM_ALIAS= #FromAlias

TagName

use Overtrue\LaravelMailAliyun\HasTagName;
class VerifyMail extend Mailable{
    use HasTagName;
    public function build()
    {
        $this->tagName('alreadyDefinedTag');
        return $this->text('mails.verify');
    }
}

Please reference the official doc: Laravel Sending mail

❤️ Sponsor me

Sponsor me

如果你喜欢我的项目并想支持它,点击这里 ❤️

Project supported by JetBrains

Many thanks to Jetbrains for kindly providing a license for me to work on this and other open-source projects.

PHP 扩展包开发

想知道如何从零开始构建 PHP 扩展包?

请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].