Mix Code

amfroehlich

Board Regular
Joined
Jul 14, 2004
Messages
192
Could i mix these codes to send a snapshot with and e-mail?

DoCmd.OutputTo acReport, "ReportName", "SnapshotFormat(*.snp)", "FilePathAndName", False, ""



DoCmd.GoToRecord , , acNewRec
DoCmd.Close
DoCmd.SetWarnings (WaringsOff)
Dim olApp As Object, olMail As Object
Set olApp = CreateObject("Outlook.Application")
Set olMail = olApp.CreateItem(olMailItem)
With olMail
.to = "Marketing@dmi-stl.com"
.Subject = "A Marketing Print Requst Has Been Made"
.Body = "A print project request has been submitted company time number : " + CTN + " and number : " + PNum
.DeleteAfterSubmit = True
.Send
End With
Set olMail = Nothing
Set olApp = Nothing
DoCmd.SetWarnings (WarningsOn)
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Does the olMail object have an attachment method/property?

To see if it has add a Watch.

If so you could point it towards the file created with OutputTo.
 
Upvote 0

Forum statistics

Threads
1,221,825
Messages
6,162,190
Members
451,752
Latest member
majbizzaki

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top