Improve mailbox parsing using chumsky (#839)

This commit is contained in:
Clément DOUIN
2023-02-20 14:09:23 +01:00
committed by GitHub
parent 69e5974024
commit 5f37b66352
14 changed files with 392 additions and 64 deletions

View File

@@ -91,7 +91,7 @@ let mailer = SmtpTransport::relay("smtp.gmail.com")
// Send the email
match mailer.send(&email) {
Ok(_) => println!("Email sent successfully!"),
Err(e) => panic!("Could not send email: {:?}", e),
Err(e) => panic!("Could not send email: {e:?}"),
}
```