I am searching for a function to return only the email content, without any header, only the decoded content of the message.
So far, I use envelop.Data.String() that returns the full body, including headers and message content.
Is there a function of kind "getDecodedEMailContent"? Or is it up to developer to parse the data and extract the content of the message based on content-type?
Hi, at this point there is no MIME Parser of any kind implemented; it's on the roadmap.
To extend the envelop.Data to return only the body should be trivial, I'll look into it!
Hello!
I am searching for a function to return only the email content, without any header, only the decoded content of the message. So far, I use
envelop.Data.String()
that returns the full body, including headers and message content.Is there a function of kind "getDecodedEMailContent"? Or is it up to developer to parse the data and extract the content of the message based on content-type?
Thanks.