Hi Friends,
I need a routine to send E-Mails with attached files using VB and OutlookExpress. I've seen routines that use Outlook, but how can I use OutlookExpress instead?
Thanks in advance for any help.
Fernando.
Hi Friends,
I need a routine to send E-Mails with attached files using VB and OutlookExpress. I've seen routines that use Outlook, but how can I use OutlookExpress instead?
Thanks in advance for any help.
Fernando.
Code:With objOutlookMsg
.To = Rst!email
.Subject = mySubject
.Body = "To All Parties Concerned:" & vbNewLine & vbNewLine
.Importance = olImportanceHigh
Set objOutlookAttach = .Attachments.Add(strAttachments)
End With