Hi everyone,
I have an Access application that sends email via a command button on a form. This works fine. What I am wondering is if there are commands in access to format the text being sent to outlook for Bold, Font Size, etc. In the code below, I would be bolding and resizing the headings between the double quotes.
Thanks,
Dom
I have an Access application that sends email via a command button on a form. This works fine. What I am wondering is if there are commands in access to format the text being sent to outlook for Bold, Font Size, etc. In the code below, I would be bolding and resizing the headings between the double quotes.
Thanks,
Dom
Code:
'**gathers information from your form. this sets the string variable to your fields
Email = "email person name"
ref = "Sourcer Updated With:" & " " & Me![code] & " Job Title " & " " & Me![desc]
origin = "NEW NEED FROM:" & " " & Me![o_company]
'destination = Me!destination
notes = "Sourcer Code :" & " " & Me![code] & Chr(13) & Chr(13) & _
"Job Title :" & " " & Me!desc & Chr(13) & Chr(13) & _
"Salary :" & " " & Me!Salary & Chr(13) & Chr(13) & _
"No. Vacancies :" & " " & NumberVacancies