Rust网络编程(6)-smtp之lettre库

邮件协议smtp,使用lettre库。非重点,仅作为手册记录。

概述

  1. SMTP工作在两种情况下,一种是电子邮件从客机传到服务器,另一种是从某个服务器传输到另一个服务器
  2. SMTP是请求/响应协议,命令和响应都是基于ASCII文本,并且以CR和LF富结尾,响应一个表示返回状态的三位数字代码
  3. SMTP是基于TCP协议的,并且在25号端口监听链接请求

使用

依赖:
lettre = “0.9.3”
lettre_email = “0.9.3”

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use lettre::smtp::authentication::Credentials;
use lettre::{SmtpClient, Transport};
use lettre_email::{EmailBuilder, Mailbox};

fn main() {
let email = EmailBuilder::new()
.from(Mailbox::new("发送者的邮箱地址".to_string()))
//.from(Mailbox::new("[email protected]".to_string())) //发送者:[email protected]
.to(Mailbox::new("接收者邮箱地址".to_string()))
//.to(Mailbox::new("[email protected]".to_string())) //接收者:[email protected]
.subject("Test") //邮件标题
.body("This is a test email!") //邮件内容
.build()
.unwrap();

//for example: [email protected], password: 123456
//let creds = Credentials::new("xiaoming".to_string(), "123456".to_string());
let creds = Credentials::new("你的邮箱用户名".to_string(), "你的邮箱密码".to_string());

//如163的邮箱就是smtp.163.com, 126的邮箱就是smtp.126.com
let mut mailer = SmtpClient::new_simple("邮箱服务器地址")
.unwrap()
.credentials(creds)
.transport();

let result = mailer.send(email.into());

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

assert!(result.is_ok());
}

总结

本文编辑完毕

  • Copyrights © 2017-2023 Jason
  • Visitors: | Views:

谢谢打赏~

微信