Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nauxliu/laravel-sendcloud
适用于 Laravel 5.X 的 SendCloud 驱动
https://github.com/nauxliu/laravel-sendcloud
laravel-sendcloud mail-driver sendcloud
Last synced: 6 days ago
JSON representation
适用于 Laravel 5.X 的 SendCloud 驱动
- Host: GitHub
- URL: https://github.com/nauxliu/laravel-sendcloud
- Owner: nauxliu
- Created: 2015-11-19T07:37:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-07T04:56:38.000Z (over 5 years ago)
- Last Synced: 2024-12-22T22:05:30.397Z (13 days ago)
- Topics: laravel-sendcloud, mail-driver, sendcloud
- Language: PHP
- Homepage:
- Size: 22.5 KB
- Stars: 238
- Watchers: 10
- Forks: 47
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel-SendCloud
供 Laravel 5.X 使用的 SendCloud 驱动,发送方式完全兼容官方用法,可随时修改配置文件改为其他驱动,而不需要改动业务代码
> `Laravel 5.5` 以下版本请使用 `1.1.3` 版本,并手动添加 ServiceProvier 到 `config/app.php`
## 安装
```
composer require naux/sendcloud
```## 配置
在 `.env` 中配置你的密钥, 并修改邮件驱动为 `sendcloud`
```ini
MAIL_DRIVER=sendcloudSEND_CLOUD_USER= # 创建的 api_user
SEND_CLOUD_KEY= # 分配的 api_key
```## 使用
#### 普通方式发送:
用法完全和系统自带的一样, 具体请参照官方文档: http://laravel.com/docs/5.1/mail```php
Mail::send('emails.welcome', $data, function ($message) {
$message->from('[email protected]', 'Laravel');$message->to('[email protected]')->cc('[email protected]');
});
```#### 模板方式发送
用法和普通发送类似,不过需要将 `body` 设置为 `SendCloudTemplate` 对象> 注意:使用模板发送不与其他邮件驱动兼容
```php
// 模板变量
$bind_data = ['url' => 'http://naux.me'];
$template = new SendCloudTemplate('模板名', $bind_data);Mail::raw($template, function ($message) {
$message->from('[email protected]', 'Laravel');$message->to('[email protected]')->cc('[email protected]');
});
```