From 7cf1597c7630751152e797d8fa2a5d60ff85ea84 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Tue, 25 Mar 2025 16:52:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E6=8E=A5=E6=94=B6?= =?UTF-8?q?=E4=BA=BA=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index f87caf1..d25565b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,6 +9,7 @@ async fn send_mail(subject:&str) { let email = Message::builder() .from("909355014@qq.com".parse().unwrap()) .to("909355014@qq.com".parse().unwrap()) + .to("1182503798@qq.com".parse().unwrap()) .subject(subject).header(ContentType::TEXT_PLAIN).body(String::from("")).unwrap(); let creds = Credentials::new("909355014@qq.com".to_owned(), "kfspmywnuelubfgg".to_owned()); let mailer = SmtpTransport::relay("smtp.qq.com")