Have searched thru all threads and can't find the answer. Does anyone know if it is possible when using the DoCmd.SendObject syntax, to specify the actual font for the email i.e Frutiger Light. All of our company emails have to be sent in this font.
Additionally is there anyway you can link to the senders email signature in Outlook so that it automatically picks this up? I am currently setting it as follows:
strBody = "Many Thanks" & vbCrLf & "My Name"
strBody2 = "Company"
strBody3 = "Address1" & Chr(17) & "Address 2"
strBody4 = "Chatham" & Chr(17) & "Kent" & Chr(17) & "Postcode" & Chr(17) & "UK" & vbCrLf & vbCrLf
strBody5 = "Direct Line: +44(0)1634 nnnnnn" & vbCrLf _
& "Switchboard: +44(0)1634 nnnnnn" & vbCrLf _
& "Facsimile: +44(0)1634 nnnnnn" & vbCrLf _
& "Email: myname@mycompany.com" & vbCrLf _
& "Website: www.mycompany.com"
Although this works fine, I am having trouble getting a large Dot placed in between Address1 and address2 etc above as the character codes do not work (what I thought was a large dot ie Chr 17 18 19 etc are actually characters not supported by Microsft Windows) they actually display in the email message as a Square shape??
Additionally is there anyway you can link to the senders email signature in Outlook so that it automatically picks this up? I am currently setting it as follows:
strBody = "Many Thanks" & vbCrLf & "My Name"
strBody2 = "Company"
strBody3 = "Address1" & Chr(17) & "Address 2"
strBody4 = "Chatham" & Chr(17) & "Kent" & Chr(17) & "Postcode" & Chr(17) & "UK" & vbCrLf & vbCrLf
strBody5 = "Direct Line: +44(0)1634 nnnnnn" & vbCrLf _
& "Switchboard: +44(0)1634 nnnnnn" & vbCrLf _
& "Facsimile: +44(0)1634 nnnnnn" & vbCrLf _
& "Email: myname@mycompany.com" & vbCrLf _
& "Website: www.mycompany.com"
Although this works fine, I am having trouble getting a large Dot placed in between Address1 and address2 etc above as the character codes do not work (what I thought was a large dot ie Chr 17 18 19 etc are actually characters not supported by Microsft Windows) they actually display in the email message as a Square shape??