Email with attachment

ellenr

Registered User.
Local time
Today, 04:15
Joined
Apr 15, 2011
Messages
400
Help! I use Access 2003, Win7, Windows Live Mail. I need to send an email with previously prepared .pdf as an attachment to all email addresses in a query. Can it be done? I think I need step-by-step instructions! Thanks for any help. I can also use a gmail account rather than Win Live Mail.
 
Last edited:
Its easy if you use the Outlook Object model. Is that a possibility?
 
Never could get it to work with standard pop but no problem once I created gmail account.
 
Gmail should work with Outlook so if you can manage this, then there is lots of help in the forum for what you need to do.

Typically, a piece of code like this would do.

Code:
Public Sub eMailJobSheet(streMail As String, myJobNo As Long, myClient As Long)

lngNo = myJobNo   ' for filter on R-Print a Job

DoCmd.OutputTo acOutputReport, "R-Print a Job", acFormatPDF, "c:\temp\Job_" & myJobNo & ".pdf", False


If Dir("c:\temp\Job_" & myJobNo & ".pdf") = "" Then     'Precautionary only
        MsgBox "Cannot eMail this Job as the .pdf is not there", vbCritical, "Contact Administrator"
        Exit Sub
End If

Dim MyOutlook As Outlook.Application
Dim MyMail As Outlook.MailItem
Set MyOutlook = New Outlook.Application
Set MyMail = MyOutlook.CreateItem(olMailItem)
      
MyMail.To = streMail
            
MyMail.Subject = "Job No. " & myJobNo & " for " & DLookup("([Company])", "Contacts", "number = " & myClient)
            
MyMail.Body = "Please find the attached Job for your attention"
            
MyMail.Attachments.Add "c:\temp\Job_" & myJobNo & ".pdf", olByValue, 1
            
MyMail.Send  'This sends it in Standard Outlook
            
MsgBox "eMail sent to Outlook" & vbLf & vbLf & "This will be despatched at the next Send/Receive action", vbInformation, "Completed"
Forms![F-Jobs].[JobeMailed].Value = True

'Now clean up
  Kill ("c:\temp\Job_" & myJobNo & ".pdf")
    
Set MyMail = Nothing
Set MyOutlook = Nothing

End Sub

You will also need this:

http://www.access-programmers.co.uk/forums/showthread.php?t=208518
 
Last edited:

Users who are viewing this thread

Back
Top Bottom