attaching report to email.

M

Mark

Hi All,

I am using
http://www.everythingaccess.com/tutorials.asp?ID=Outlook-Send-E-mail-without-Security-Warning
to send an email with a report attached. My problem is I don’t know how to
get the report attached using his procedure. He has a procedure in the VB to
so it, but just over my head I guess.

How can I get an access report attached to the email using this procedure
(link above)?


Here’s what he has:

'Add any specified attachments
TempArray = Split(strAttachments, ";")
For Each varArrayItem In TempArray

strAttachmentPath = Trim(varArrayItem)
If Len(strAttachmentPath) > 0 Then
.Attachments.Add strAttachmentPath
End If

Next varArrayItem
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top