A
AbraAbraCadabra
Here is the code I am using to send mail...
With objEmail
.From = Chr(34) & "Name" & Chr(34) & "(e-mail address removed)"
.To = strToArray(x)
.Subject = strSubject
.HtmlBody = strBody
.Send
End With
How can I send an attachment?
Is it something like this...?
.attachment="c:\file.txt"
With objEmail
.From = Chr(34) & "Name" & Chr(34) & "(e-mail address removed)"
.To = strToArray(x)
.Subject = strSubject
.HtmlBody = strBody
.Send
End With
How can I send an attachment?
Is it something like this...?
.attachment="c:\file.txt"