I have a formatted email I’m sending out to a service which they scrub for information. It needs to have all left spaces trimmed, so that it is just the data and the line feeds. My code trims each append to the RT field, but when it comes out it looks like this:| TX
and each line has this | and a space before my field.
The code to do this is
Set RTBody = BLdoc.CreateRichTextItem(“Body” )
Call RTBody.AppendText(ARTEAcct)
Call RTBody.AddNewLine(1)
Is there a way of removing the bar and the space?