merlynsdad
Programmer
I'm having a problem inserting a carriage return in Outlook HTML being sent via Access VBA. Here's the pertinent line of code.
I understand chr(13) and chr(10) only work in text mode, but can't find the corresponding code to use in HTML. I need the break between the period after strIssue and strSomestr.
If the square peg won't fit in the round hole, sand off the corners.
Code:
objMail.HTMLBody = "Ticket " & intTixNum & " has been entered into Ticket Tracker by " & strEmpName & " concerning " & strIssue & ". " & strSomestr & " "
If the square peg won't fit in the round hole, sand off the corners.