All Projects → HyanCat → aliyun-direct-mail

HyanCat / aliyun-direct-mail

Licence: MIT license
[DEPRECATED] 阿里云 DirectMail for Laravel.

Programming Languages

PHP
23972 projects - #3 most used programming language

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

laravel-mail-aliyun
📧 Aliyun DrirectMail Transport for Laravel Application.
Stars: ✭ 69 (+165.38%)
Mutual labels:  mail, aliyun, directmail
yapople
Yet another POP3 email library
Stars: ✭ 22 (-15.38%)
Mutual labels:  mail
Android-Email-App-using-Javamail-Api
An Android App to send mail without gamil/email interaction!
Stars: ✭ 19 (-26.92%)
Mutual labels:  mail
psm
Pypi Source Manager: fast switch between different Pypi Source: Pypi, double, aliyun
Stars: ✭ 31 (+19.23%)
Mutual labels:  aliyun
webpack-react-boilerplate
A boilerplate for using webpack and react.
Stars: ✭ 33 (+26.92%)
Mutual labels:  deprecated
easymail
Easy way to install a mail server.
Stars: ✭ 60 (+130.77%)
Mutual labels:  mail
roweb
⛔ [DEPRECATED] Active at https://github.com/ropensci/roweb2
Stars: ✭ 18 (-30.77%)
Mutual labels:  deprecated
node-pagerduty
⛔️ DEPRECATED - PagerDuty v2 API Wrapper for Node
Stars: ✭ 19 (-26.92%)
Mutual labels:  deprecated
Meteor-Mailer
📮 Bulletproof email queue on top of NodeMailer with support of multiple clusters and servers setup
Stars: ✭ 21 (-19.23%)
Mutual labels:  mail
react-native-aliyun-playview
封装阿里云点播播放器与短视频上传功能
Stars: ✭ 24 (-7.69%)
Mutual labels:  aliyun
homebridge-mi-ac-partner
[DEPRECATED] A Xiaomi Mi ac partner plugin for Homebridge.
Stars: ✭ 29 (+11.54%)
Mutual labels:  deprecated
gulp-rework
Preprocess CSS with Rework
Stars: ✭ 30 (+15.38%)
Mutual labels:  deprecated
aliyun-dts-subscribe-sdk-java
aliyun-dts-subscribe-sdk-java
Stars: ✭ 18 (-30.77%)
Mutual labels:  aliyun
resizeend
Debounced JavaScript resize events
Stars: ✭ 60 (+130.77%)
Mutual labels:  deprecated
postal
✉️ A fully featured open source mail delivery platform for incoming & outgoing e-mail
Stars: ✭ 12,134 (+46569.23%)
Mutual labels:  mail
sendcloud
SendCloud Mail SDK
Stars: ✭ 21 (-19.23%)
Mutual labels:  mail
Mail
The Hoa\Mail library.
Stars: ✭ 24 (-7.69%)
Mutual labels:  mail
mail
golang send mail with SSL,TLS and support NTLM,LOGIN,PLAIN AUTH...
Stars: ✭ 29 (+11.54%)
Mutual labels:  mail
react-i18next-phraseapp
Library support to use react-i18next with the Phrase In-Context Editor - DEPRECATED
Stars: ✭ 14 (-46.15%)
Mutual labels:  deprecated
KP.GmailClient
A Gmail client for C#
Stars: ✭ 17 (-34.62%)
Mutual labels:  mail

Aliyun DirectMail for Laravel 5/6/7

使用阿里云的 DirectMail 发送邮件。

当前实现仅支持单一发信接口

安装

  1. 使用 composer 安装文件

    composer require hyancat/aliyun-direct-mail:dev-master
  2. config/services.php 中添加如下配置:

    ...
    'directmail' => [
    	'app_key'    => env('DIRECT_MAIL_APP_KEY'),
    	'app_secret' => env('DIRECT_MAIL_APP_SECRET'),
    	'region'     => 'cn-beijing',
    	'account'    => [
    		'alias' => env('DIRECT_MAIL_ACCOUNT_ALIAS'),
    		'name' => env('DIRECT_MAIL_ACCOUNT_NAME'),
    	]
    ],
    ...

    具体配置含义请参考官方文档

    请根据需要在.env中创建环境配置。

  3. 修改 defaultdirectmail(或者.env 中的 MAIL_MAILER)。

    如果是 Laravel 5.x/6.x,应该是修改 config/mail.php 中的 driverdirectmail(或者 .env 中的 MAIL_DRIVER)。

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].