diff options
author | Teddy Wing | 2021-03-09 00:23:03 +0100 |
---|---|---|
committer | Teddy Wing | 2021-03-09 00:23:03 +0100 |
commit | df0704c5958993692319850e809cb0cf4e85589f (patch) | |
tree | 9990ae44add49f8f5a378fa9324b3862cf6b8b99 /Cargo.toml | |
parent | 34f470d2fbfff09a448a54f60addb385db6aa036 (diff) | |
download | mutt-ottolangy-df0704c5958993692319850e809cb0cf4e85589f.tar.bz2 |
Work out how to get the body of a multipart email
Figured out why I was getting an empty string before: I was inputting a
multipart email. I need to actually look through each part to get the
message body. Look for the body of the "text/plain" part.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,6 +5,6 @@ edition = "2018" [dependencies] # email-parser = "0.5.0" -# mailparse = "0.13.2" +mailparse = "0.13.2" # email-format = "0.8.0" -email = "0.0.21" +# email = "0.0.21" |