J
JBark
Hello - when I use vba to create an Outlook mail item, can I specify the font
to be used? Right now it pulls whatever the user has set as the default in
Word under Tools > Options > General > Email Options.
Can it be added to this? Thanks.
With oItem
.To = "(e-mail address removed)"
.Subject = "MySubject"
'Add the document as an attachment, you can use the .displayname property
'to set the description that's used in the message
.Attachments.Add Source:=ActiveDocument.FullName, Type:=olByValue
.Body = ActiveDocument.Content
.Send
End With
to be used? Right now it pulls whatever the user has set as the default in
Word under Tools > Options > General > Email Options.
Can it be added to this? Thanks.
With oItem
.To = "(e-mail address removed)"
.Subject = "MySubject"
'Add the document as an attachment, you can use the .displayname property
'to set the description that's used in the message
.Attachments.Add Source:=ActiveDocument.FullName, Type:=olByValue
.Body = ActiveDocument.Content
.Send
End With