I use VPE 7.1, Dataflex 17.1 with VPE-classes from StarZen
With the test code below and iMapi=1 (Extended MAPI), cr+lf doesn't generate a new line and the text in the mail is
Row1 Row2 Row3
but with iMapi=2 (Simple MAPI), cr+lf works and the text in the mail is
Row1
Row2
Row3
- Code: Select all
Send DoVPEGetMAPIType to iMapi
If (iMapi=1) Send DoVpeSetMailText ("<html>"+"Row 1" + sCrLf + "Row 2" + sCrLf + "Row 3" + sCrLf+ "</html>")
Else Send DoVpeSetMailText ("Row 1" + sCrLf + "Row 2" + sCrLf + "Row 3" + sCrLf)
How can a linebreak be inserted when extended MAPI is used?
Bengt