mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
use usize::MAX for line wrap length, since lettre does it for us (#3034)
fixes #2921
This commit is contained in:
parent
f50325e78a
commit
b47ce4c2e6
@ -43,8 +43,8 @@ pub fn send_email(
|
||||
(email, port)
|
||||
};
|
||||
|
||||
// the message length before wrap, 78, is somewhat arbritary but looks good to me
|
||||
let plain_text = html2text::from_read(html.as_bytes(), 78);
|
||||
// use usize::MAX as the line wrap length, since lettre handles the wrapping for us
|
||||
let plain_text = html2text::from_read(html.as_bytes(), usize::MAX);
|
||||
|
||||
let email = Message::builder()
|
||||
.from(
|
||||
|
Loading…
Reference in New Issue
Block a user