Microsoft
Software
Hardware
Network
Question : Inserting new line into Outlook message text using vba
I'm programtically inserting fileds from an Access database into an Outlook email message. The problem is that I would like each field to be inserted on a new line.
I am using the following code:
DoCmd.SendObject _
objecttype:=acSendReport, _
ObjectName:="CFS - Single Complaint View email", _
outputformat:=acFormatTXT,
_
To:=Me.Opened_By, _
Bcc:=strEmail, _
subject:="Complaint number: " & Me.Complaint_Number & " Customer Name: " & Me.Customer_Name, _
MessageText:="Complaint Description: " & Me.Complaint_Description & " Containment Action: " & Me.Containment_Action & " Containment Date: " & Me.Containment_Date, _
TemplateFile:=""
Answer : Inserting new line into Outlook message text using vba
Add:
"text1" & vbCrLf & "Text2"
Random Solutions
What is a binary tree and how does it work?
Developer access to CUD
How can I view a Private IP Address Nat to a Public IP Address
Open Office Text and python: extract text word by word
get a remote windows server OS version and IP address without access permission on that server
stored proc select and update where name field is null
dropdown validation
PowerShell and PSEXEC Problem
How Do I update a DataSet after entering information into a "Detail View"
[Exchange 2010] - Change default Management Role - Prevent users from creating new Distribution groups