1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
[‼️]: ✏️README.mdt # xsmtp ```rust #[tokio::test] async fn test() -> anyhow::Result<()> { Ok( xsmtp::send( "测试xsmtp", "i18n.site@gmail.com", "测试邮件", "正文\n测试", "", ) .await?, ) } ```