GithubHelp home page GithubHelp logo

johanot / lettre Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lettre/lettre

0.0 2.0 0.0 8.91 MB

a mailer library for Rust

Home Page: https://lettre.at

License: MIT License

Rust 100.00%

lettre's Introduction

lettre

A mailer library for Rust


Features

Lettre provides the following features:

  • Multiple transport methods
  • Unicode support (for email content and addresses)
  • Secure delivery with SMTP using encryption and authentication
  • Easy email builders

Lettre does not provide (for now):

  • Async support
  • Email parsing

Example

This library requires Rust 1.20 or newer. To use this library, add the following to your Cargo.toml:

[dependencies]
lettre = "0.9"
lettre_email = "0.9"
use lettre::{EmailTransport, SmtpTransport};
use lettre_email::EmailBuilder;
use std::path::Path;

let email = EmailBuilder::new()
    // Addresses can be specified by the tuple (email, alias)
    .to(("[email protected]", "Firstname Lastname"))
    // ... or by an address only
    .from("[email protected]")
    .subject("Hi, Hello world")
    .text("Hello world.")
    .build()
    .unwrap();

// Open a local connection on port 25
let mut mailer = SmtpTransport::builder_unencrypted_localhost().unwrap()
                                                                   .build();
// Send the email
let result = mailer.send(&email);

if result.is_ok() {
    println!("Email sent");
} else {
    println!("Could not send email: {:?}", result);
}

assert!(result.is_ok());

Testing

The lettre tests require an open mail server listening locally on port 2525 and the sendmail command.

Code of conduct

Anyone who interacts with Lettre in any space, including but not limited to this GitHub repository, must follow our code of conduct.

License

This program is distributed under the terms of the MIT license.

The builder comes from emailmessage-rs by Kayo, under MIT license.

See LICENSE for details.

lettre's People

Contributors

amousset avatar paolobarbolini avatar mibac138 avatar eijebong avatar nevdelap avatar artemgr avatar chills42 avatar craftytrickster avatar lorenz avatar typr124 avatar gralpli avatar busarovalex avatar atul9 avatar cnd avatar callahad avatar haudan avatar jacobbudin avatar janrupf avatar mpietrzak avatar marmistrz avatar mjanda avatar madmaxio avatar mguentner avatar ojford avatar gitter-badger avatar tshepang avatar astonbitecode avatar dimlev avatar funkill avatar llebout avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.