diff --git a/src/inbox.rs b/src/inbox.rs index 4acbf73..070563e 100644 --- a/src/inbox.rs +++ b/src/inbox.rs @@ -238,5 +238,5 @@ fn find_part(mail: &mailparse::ParsedMail, mime_type: &str) -> Option { } fn html_to_text(html: &str) -> String { - html2text::from_read(html.as_bytes(), 80).unwrap_or_else(|_| html.to_string()) + html2text::from_read(html.as_bytes(), 1000).unwrap_or_else(|_| html.to_string()) }