All Projects → txthinking → Mailer

txthinking / Mailer

Licence: mit
A lightweight PHP SMTP mail sender

Projects that are alternatives of or similar to Mailer

Ptorx
📩🛡 Email privacy. Anonymously send and receive with alias forwarding.
Stars: ✭ 187 (+252.83%)
Mutual labels:  email, mail, smtp
email
Aplus Framework Email Library
Stars: ✭ 127 (+139.62%)
Mutual labels:  email, mailer, smtp
Magento 2 Smtp
Magento 2 SMTP Extension helps the owner of store simply install SMTP (Simple Mail Transfer Protocol) server which transmits the messages into codes or numbers.
Stars: ✭ 228 (+330.19%)
Mutual labels:  email, smtp, mailer
Yii2 Swiftmailer
Yii 2 swiftmailer extension.
Stars: ✭ 109 (+105.66%)
Mutual labels:  email, mail, mailer
mailx
A lightweight SMTP mail library
Stars: ✭ 17 (-67.92%)
Mutual labels:  mail, email, smtp
Free Email Forwarding
The best free email forwarding for custom domains. Visit our website to get started (SMTP server)
Stars: ✭ 2,024 (+3718.87%)
Mutual labels:  email, mail, smtp
Meteor-Mailer
📮 Bulletproof email queue on top of NodeMailer with support of multiple clusters and servers setup
Stars: ✭ 21 (-60.38%)
Mutual labels:  mail, mailer, smtp
Mailinabox
Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box.
Stars: ✭ 10,649 (+19992.45%)
Mutual labels:  email, mail, smtp
go-simple-mail
Golang package for send email. Support keep alive connection, TLS and SSL. Easy for bulk SMTP.
Stars: ✭ 298 (+462.26%)
Mutual labels:  mail, email, smtp
Mail
基于 Net.Mail 封装的发送邮件工具类。仅需一行代码,发送邮件。支持自定义邮件发出邮箱、发出方名字等。 支持SSL加密发送。 多个接收人、抄送人。支持群发独显。 支持添加附件、多个附件。 目前大部分主流邮箱全支持。
Stars: ✭ 87 (+64.15%)
Mutual labels:  mail, email, smtp
Mailmergelib
MailMergeLib is a mail message client library which provides comfortable mail merge capabilities for text, inline images and attachments, as well as good throughput and fault tolerance for sending mail messages.
Stars: ✭ 97 (+83.02%)
Mutual labels:  email, mail, smtp
Sendria
Sendria (formerly MailTrap) is a SMTP server designed to run in your dev/test environment, that is designed to catch any email you or your application is sending, and display it in a web interface instead of sending to real world.
Stars: ✭ 30 (-43.4%)
Mutual labels:  email, mail, smtp
Mailu
Insular email distribution - mail server as Docker images
Stars: ✭ 3,151 (+5845.28%)
Mutual labels:  email, mail, smtp
mail
Actively maintained fork of gomail. The best way to send emails in Go.
Stars: ✭ 376 (+609.43%)
Mutual labels:  email, mailer, smtp
ESP-Mail-Client
⚡️Arduino Mail Client Library to send, read and get incoming mail notification for ESP32, ESP8266 and SAMD21 devices. The library also supported other Arduino devices using Clients interfaces e.g. WiFiClient, EthernetClient, and GSMClient.
Stars: ✭ 78 (+47.17%)
Mutual labels:  mail, email, smtp
Lettre
a mailer library for Rust
Stars: ✭ 713 (+1245.28%)
Mutual labels:  email, smtp, mailer
Core
Dovecot mail server
Stars: ✭ 540 (+918.87%)
Mutual labels:  email, mail
Deltachat Desktop
Email-based instant messaging for Desktop.
Stars: ✭ 526 (+892.45%)
Mutual labels:  email, smtp
Exim
Exim Mail Transport Agent - source, testsuite and documentation
Stars: ✭ 545 (+928.3%)
Mutual labels:  email, smtp
Mailer
The Mailer component helps sending emails
Stars: ✭ 609 (+1049.06%)
Mutual labels:  email, mailer

Mailer Build Status

A lightweight SMTP mail sender

Install

$ composer require txthinking/mailer

Usage

<?php
use Tx\Mailer;

$ok = (new Mailer())
    ->setServer('smtp.server.com', 25)
    ->setAuth('[email protected]', 'password')
    ->setFrom('Tom', '[email protected]')
    ->setFakeFrom('Obama', '[email protected]') // if u want, a fake name, a fake email
    ->addTo('Jerry', '[email protected]')
    ->setSubject('Hello')
    ->setBody('Hi, Jerry! I <strong>love</strong> you.')
    ->addAttachment('host', '/etc/hosts')
    ->send();
var_dump($ok);

More Example

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