diff --git a/src/main.rs b/src/main.rs index 7e9bc84..cb89ee9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -257,6 +257,8 @@ fn main() { use notify_rust::{Notification, NotificationHint}; let title = format!("@{} has new mail ({} unseen)", account, num_unseen); let notification = format!("> {}", subjects.join("\n> ")); + println!("! {}", title); + println!("{}", notification); Notification::new() .summary(&title) .body(¬ification)