#mailgun #client #api #message #mailgun-region

mailgun-rs

An unofficial client library for the Mailgun API

11 releases

0.1.10 Sep 14, 2023
0.1.9 Sep 13, 2023
0.1.8 Jul 11, 2023
0.1.7 May 20, 2023
0.1.3 Sep 26, 2019

#67 in Email

Download history 129/week @ 2023-11-24 103/week @ 2023-12-01 167/week @ 2023-12-08 121/week @ 2023-12-15 64/week @ 2023-12-22 40/week @ 2023-12-29 103/week @ 2024-01-05 105/week @ 2024-01-12 126/week @ 2024-01-19 37/week @ 2024-01-26 109/week @ 2024-02-02 173/week @ 2024-02-09 156/week @ 2024-02-16 184/week @ 2024-02-23 141/week @ 2024-03-01 78/week @ 2024-03-08

569 downloads per month

MIT license

12KB
207 lines

mailgun-rs

An unofficial client library for the Mailgun API

# Cargo.toml
[dependencies]
mailgun-rs = "0.1.10"

Examples

extern crate mailgun_rs;

use mailgun_rs::{EmailAddress, Mailgun, MailgunRegion, Message};
use std::collections::HashMap;

fn main() {
    let domain = "mailgun.hackerth.com";
    let key = "key-xxxxxx";
    let recipient = "dongrify@gmail.com";

    send_html(recipient, key, domain);
    send_template(recipient, key, domain);
}

fn send_html(recipient: &str, key: &str, domain: &str) {
    let recipient = EmailAddress::address(recipient);
    let message = Message {
        to: vec![recipient],
        subject: String::from("mailgun-rs"),
        html: String::from("<h1>hello from mailgun</h1>"),
        ..Default::default()
    };

    let client = Mailgun {
        api_key: String::from(key),
        domain: String::from(domain),
        message,
    };
    let sender = EmailAddress::name_address("no-reply", "no-reply@hackerth.com");

    match client.send(MailgunRegion::US, &sender) {
        Ok(_) => {
            println!("successful");
        }
        Err(err) => {
            println!("Error: {err}");
        }
    }
}

fn send_template(recipient: &str, key: &str, domain: &str) {
    let mut template_vars = HashMap::new();
    template_vars.insert(String::from("firstname"), String::from("Dongri"));

    let recipient = EmailAddress::address(recipient);
    let message = Message {
        to: vec![recipient],
        subject: String::from("mailgun-rs"),
        template: String::from("template-1"),
        template_vars,
        ..Default::default()
    };

    let client = Mailgun {
        api_key: String::from(key),
        domain: String::from(domain),
        message,
    };
    let sender = EmailAddress::name_address("no-reply", "no-reply@hackerth.com");

    match client.send(MailgunRegion::US, &sender) {
        Ok(_) => {
            println!("successful");
        }
        Err(err) => {
            println!("Error: {err}");
        }
    }
}

Dependencies

~4–18MB
~257K SLoC