• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

c++ question...CMimeMessage

IKeelU

Member
I am writing a small benching application in c++ which is supposed to send me an email after every benchmark has run. I'm using the CMimeMessage class to create the messages, and CMimeConnection to send it. Body text must be stored in a cstring and added via the function CMimeMessage.Addtext(...).

The problem is, the message I receive has newlines at every 998 characters, whereas the input cstring has none at those locations. You can imagine this mucks up my text quite a bit (especially considering I've got everything nicely formatted in columns and such).

Is there a way around this glitch?
 
Back
Top