enqueue-email 0.1.0

Send a bookmark via email, enqueuing it with MSMTP queue
Documentation
#[cfg(test)]
mod tests {
    use pretty_assertions::assert_eq;

    #[test]
    #[ignore]
    fn test_assert() {
        assert_eq!(true, true);
    }

    #[test]
    #[ignore]
    fn test_result() -> Result<(), String> {
        if true {
            Ok(())
        } else {
            Err(String::from("two plus two does not equal four"))
        }
    }
}