Hi Experts, I am using a Data Access Page with a button to generate a mail message and populate the TO, SUBJECT and BODY areas. The code below works fine, but I need to ammend it in some way that will include the [Contact_Name] field on a new line (carriage return) under the [Company_Name].
This is what I have sof far:
------------------
window.open "mailto:" & DropDownList_Sales_Staff.value & "?subject=" & "Technical Support Ref: " & ID.value & "&Body=" & "Company Name: " & Company_Name.value
------------------
Which displays the following in a new message, ready for the user to click the 'Send' button:
------------------
To: Sales Staff Name
Subject: Technical Support Ref: 1234
Message Body:
Company Name: Bloggs & Co
------------------
I would like to display the [Contact_Name] on the next line e.g.
Company Name: Bloggs & Co
Contact Name: Joe Bloggs
Please help.....
window.open "mailto:" & DropDownList_Sales_Staff.v