Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

objItem.Body =

Status
Not open for further replies.

TJVFree

Technical User
Nov 22, 2010
236
US
I've been researching how to add a paragraph under the first line.

objItem.Subject = "Placements and Assessments Reports "
objItem.Body = "I have attached this weekes Placements and Assessments Report.

TCB
Company
P:555-555-5555
F:444-444-4444


TCB
 
How about:

Code:
Dim strBody As String

objItem.Subject = "Placements and Assessments Reports "

strBody = "I have attached this weekes Placements and Assessments Report." & vbNewLine
strBody = strBody & "TCB." & vbNewLine
strBody = strBody & "Company." & vbNewLine
strBody = strBody & "P:555-555-5555." & vbNewLine
strBody = strBody & "F:444-444-4444."

objItem.Body = strBody

Have fun.

---- Andy

A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top