All Projects → overtrue → sendcloud

overtrue / sendcloud

Licence: other
SendCloud Mail SDK

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to sendcloud

laravel-sendcloud
SendCloud Mail SDK for Laravel.
Stars: ✭ 19 (-9.52%)
Mutual labels:  sendcloud, sendcloud-api, sendcloud-mail, sendcloud-sdk
homebridge-messenger
Send HomeKit messages with HomeBridge (Pushover / IFTTT / Email)
Stars: ✭ 74 (+252.38%)
Mutual labels:  mail
SimpleKotlinMail
A simple, coroutine based Kotlin Email API for both client- and server-side projects
Stars: ✭ 56 (+166.67%)
Mutual labels:  mail
mail-deduplicate
📧 CLI to deduplicate mails from mail boxes.
Stars: ✭ 134 (+538.1%)
Mutual labels:  mail
imail
small mail server
Stars: ✭ 88 (+319.05%)
Mutual labels:  mail
gopistolet
Mailserver written in Go
Stars: ✭ 59 (+180.95%)
Mutual labels:  mail
mlmmj-simple-web-interface
A very simple web frontend in node for mlmmj (http://mlmmj.org)
Stars: ✭ 24 (+14.29%)
Mutual labels:  mail
enough mail app
Mail app for iOS, Android and hopefully more platforms in the future. Based on Flutter.
Stars: ✭ 84 (+300%)
Mutual labels:  mail
CYMailDemo
A mail client base on mailcore2
Stars: ✭ 14 (-33.33%)
Mutual labels:  mail
go-mail
📧 A cross platform mail driver for GoLang. Featuring Mailgun, Postal, Postmark, SendGrid, SparkPost & SMTP.
Stars: ✭ 169 (+704.76%)
Mutual labels:  mail
scripts
A collection of random scripts I coded up
Stars: ✭ 17 (-19.05%)
Mutual labels:  mail
f3-mailer
Fat-Free Sugar Mailer Plugin
Stars: ✭ 18 (-14.29%)
Mutual labels:  mail
ModMail
A Discord ModMail Bot.
Stars: ✭ 54 (+157.14%)
Mutual labels:  mail
laravel-mail-export
A simple mailable trait and interface to export mails to a storage disk once being sent.
Stars: ✭ 82 (+290.48%)
Mutual labels:  mail
postmark-wordpress
The Official Postmark Wordpress Plugin
Stars: ✭ 17 (-19.05%)
Mutual labels:  mail
django-yubin
Send e-mails asyncronously using cron
Stars: ✭ 44 (+109.52%)
Mutual labels:  mail
Smtp-cracker
[NEW] : Simple Mail Transfer Protocol (SMTP) CHECKER - CRACKER Tool V2
Stars: ✭ 67 (+219.05%)
Mutual labels:  mail
mailparse
Rust library to parse mail files
Stars: ✭ 148 (+604.76%)
Mutual labels:  mail
Galleon
A badass SMTP mail server built on Node to make your life simpler.
Stars: ✭ 14 (-33.33%)
Mutual labels:  mail
hermes
Automates programmables à réaction aux échanges électroniques depuis une boîte IMAP4
Stars: ✭ 15 (-28.57%)
Mutual labels:  mail

SendCloud

📧 [SendCloud](https://www.sendcloud.net) Mail SDK

Installing

$ composer require overtrue/sendcloud -vvv

Usage

use Overtrue\SendCloud\SendCloud;

$apiUser = 'overtrue_test_xxxx';
$apiKey = 'UWoBGa2sgxyxxxxxxxx';

$client = new SendCloud($apiUser, $apiKey);

$result = $client->post('/mail/send', [
    'from' => '[email protected]',
    'to' => '[email protected]',
    'subject' => '来自 SendCloud 的第一封邮件!',
    'html' => '你太棒了!你已成功的 从 SendCloud 发送了一封测试邮件!',
]);

var_dump($result);

//{
//    "result": true,
//    "statusCode": 200,
//    "message": "请求成功",
//    "info": {
//        "emailIdList": [
//            "1513828329529_91891_27315_500.sc-10_9_13_218-inbounddemo@easywechat.com"
//        ]
//    }
//}⏎

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