All Projects → txthinking → mailx

txthinking / mailx

Licence: MIT License
A lightweight SMTP mail library

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to mailx

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 (+470.59%)
Mutual labels:  mail, email, smtp
Mailer
A lightweight PHP SMTP mail sender
Stars: ✭ 53 (+211.76%)
Mutual labels:  mail, email, 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 (+358.82%)
Mutual labels:  mail, email, smtp
go-simple-mail
Golang package for send email. Support keep alive connection, TLS and SSL. Easy for bulk SMTP.
Stars: ✭ 298 (+1652.94%)
Mutual labels:  mail, email, smtp
Mail
基于 Net.Mail 封装的发送邮件工具类。仅需一行代码,发送邮件。支持自定义邮件发出邮箱、发出方名字等。 支持SSL加密发送。 多个接收人、抄送人。支持群发独显。 支持添加附件、多个附件。 目前大部分主流邮箱全支持。
Stars: ✭ 87 (+411.76%)
Mutual labels:  mail, email, 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 (+62541.18%)
Mutual labels:  mail, email, 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 (+76.47%)
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 (+11805.88%)
Mutual labels:  mail, email, smtp
Ptorx
📩🛡 Email privacy. Anonymously send and receive with alias forwarding.
Stars: ✭ 187 (+1000%)
Mutual labels:  mail, email, smtp
Mailu
Insular email distribution - mail server as Docker images
Stars: ✭ 3,151 (+18435.29%)
Mutual labels:  mail, email, smtp
skirnir
Skirnir Email Server
Stars: ✭ 31 (+82.35%)
Mutual labels:  mail, smtp
wp-smtp
Simple package for handling WordPress SMTP with .env when using the Roots stack.
Stars: ✭ 31 (+82.35%)
Mutual labels:  mail, smtp
postal
✉️ A fully featured open source mail delivery platform for incoming & outgoing e-mail
Stars: ✭ 12,134 (+71276.47%)
Mutual labels:  mail, smtp
Meteor-Mailer
📮 Bulletproof email queue on top of NodeMailer with support of multiple clusters and servers setup
Stars: ✭ 21 (+23.53%)
Mutual labels:  mail, smtp
vertx-mail-client
No description or website provided.
Stars: ✭ 30 (+76.47%)
Mutual labels:  mail, smtp
fs2-mail
asynchronous library for sending and receiving mail via fs2._
Stars: ✭ 39 (+129.41%)
Mutual labels:  mail, smtp
go-mail
📨 Simple email interface across multiple service providers (ses, postmark, mandrill, smtp)
Stars: ✭ 39 (+129.41%)
Mutual labels:  mail, smtp
email
Aplus Framework Email Library
Stars: ✭ 127 (+647.06%)
Mutual labels:  email, smtp
laravel-postal
This library integrates Postal with the standard Laravel mail framework.
Stars: ✭ 20 (+17.65%)
Mutual labels:  mail, email
Mail
The Hoa\Mail library.
Stars: ✭ 24 (+41.18%)
Mutual labels:  mail, smtp

mailx

Build Status Go Report Card GoDoc

🗣 News 💬 Chat 🩸 Youtube ❤️ Sponsor

A lightweight SMTP mail library

❤️ A project by txthinking.com

Install

$ go get github.com/txthinking/mailx

Example

server := &mailx.SMTP{
    Server:   "smtp.mailtrap.io",
    Port:     465,
    UserName: "e3f534cfe656f4",
    Password: "b6e38ddc0f1e9d",
}

message := &mailx.Message{
    From: &mail.Address{
        Name:    "mailx",
        Address: "[email protected]",
    },
    To: []*mail.Address{
        {
            Name:    "Cloud",
            Address: "[email protected]",
        },
    },
    Subject: "Hello",
    Body:    "I <b>love</b> U.",
    Attachment: []string{
        "/etc/hosts",
    },
}

if err := server.Send(message); err != nil {
    log.Fatal(err)
}

License

Licensed under The MIT License

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