Hi: I got most of this figured out, but am still having compile issues. I'm not sure how to replace the: &= new String(htmlFile.binDataLen).
I see the obvious changes from the docs but it would be very helpful to see the code below in its new format.
Thank you.
Jim
htmlFile.Load(htmlFileName) ! Load the file from disk the the feFile class.
if convertToText ! Handle conversion to text using the NetWebClient class
htmlToText.page &= new String(htmlFile.binDataLen)
htmlToText.page = htmlFile.binData
htmlToText.TextOnly()
EmailSender.SetRequiredMessageSize(0, htmlToText.pageLen, htmlFile.binDataLen)
EmailSender.messageText = htmlToText.page
else
EmailSender.SetRequiredMessageSize(0, 0, htmlFile.binDataLen)
end