#email #mailgun #json-api #reqwest #api-bindings #api

mailgun_v3

reqwest based web bindings for Mailgun's v3 JSON API

13 breaking releases

0.14.0 Jan 4, 2023
0.13.0 May 14, 2022
0.12.0 Mar 24, 2022
0.11.2 Aug 11, 2021
0.4.0 Aug 25, 2018

#16 in #json-api

Download history 20/week @ 2024-01-08 6/week @ 2024-01-15 5/week @ 2024-01-22 8/week @ 2024-02-05 5/week @ 2024-02-12 21/week @ 2024-02-19 61/week @ 2024-02-26 14/week @ 2024-03-04 53/week @ 2024-03-11 27/week @ 2024-03-18 48/week @ 2024-04-01 13/week @ 2024-04-08 25/week @ 2024-04-15

92 downloads per month

MIT license

27KB
556 lines

mailgun_v3

Build Status Current Crates.io Version

reqwest based web bindings for Mailgun's v3 JSON API

https://docs.rs/mailgun_v3/latest/mailgun_v3/

currently implemented

  • email send
  • email validation

Examples

Sending an email

use mailgun_v3::email::{Message, EmailAddress, MessageBody};
use mailgun_v3::Credentials;

fn main(){
    let msg = Message {
        to: vec![EmailAddress::address("target@example.org")],
        body: MessageBody::Text("hello world".to_string()),
        subject: String::from("sample subject"),
        ..Default::default()
    };
    let sender = EmailAddress::address("sender@example.org");
    let creds = Credentials::new(
        "key-abc1234567890",
        "example.org",
    );
    let res = mailgun_v3::email::send_email(&creds, &sender, msg);
    println!("{:?}", res);
}

More examples can be found in the examples directory.

Dependencies

~5–19MB
~275K SLoC