Giter VIP home page Giter VIP logo

rust-ssmtp's Introduction

Rust Ssmtp

Rust sending emails via ssmtp

This is the beginning stages of this repo and I am a Rust newbie. Please provide suggestions or corrections. Currently there is no working method (that I am aware of) to send emails with Rust. So I made rust-ssmtp.

The requirements for Rust Ssmtp:

  1. Linux/OSX
  2. ssmtp

* Note: These instructions assume a Ubuntu machine and the use of a gmail account. You can use any smtp compatible email account.

Step One

Install ssmtp and configure

Run Commands:

apt-get -y install ssmtp
nano /etc/ssmtp/ssmtp.conf

Edit/Add the Follwing Lines:

[email protected]
mailhub=smtp.gmail.com:587
FromLineOverride=YES
UseSTARTTLS=YES
AuthUser=your.account
AuthPass=password
AuthMethod=LOGIN

* Note: Special charecters such as symbols will not work. Also dispable two step authentication.

Test Command:

ssmtp [email protected]
Subject: Hello
I am the body. World!

Another Test Command:

echo From: [email protected]\n Subject: Hello\n I am the body. Wrold! > email.txt
ssmtp [email protected] < email.txt

Step Two

Create Main.rs File

extern crate ssmtp;
use ssmtp::email;

fn main() {

    // Configure email body and header
    email::create(
        // From Address
        "[email protected]",
        // To Address
        "[email protected]",
        // Subject
        "Subject - Hello World!",
        // Body
        "<html><body><h1>I am the body. Hello Wolrd!<br/><br/>And I accept html.</h1></body></html>"
    );

    // Define the actual email address to receive the email
    email::send("[email protected]");
}

rust-ssmtp's People

Contributors

xeaone avatar

Watchers

James Cloos avatar  avatar

Forkers

nn1k4

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.