Automate Outlook

AndrewKent

Well-known Member
Joined
Jul 26, 2006
Messages
889
Hi there,

I had done this previously but for the life of me cannot find the template I built.

I'm looking to write a procedure within Outlook VBA that will do the following:

1) Create a new email
2) Complete the To:, CC:, Subject: and Message Body with whatever I want (I can define the variables there, not an issue)
3) Attach an excel file from a folder location.
4) OPen email on screen to be reviewed.

Any takers?

Kind regards,

Andy
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Something like:
Code:
   Dim Mail As MailItem
   Dim strMessage As String
   Set Mail = Application.CreateItem(olMailItem)
   strMessage = "this is the message"
   With Mail
      .Subject = "Important e-mail"
      .To = "Everyone"
      .Body = strMessage
      .Attachments.Add "C:\blah.xls"
      .Display
   End With
 
Upvote 0

Forum statistics

Threads
1,224,596
Messages
6,179,807
Members
452,944
Latest member
2558216095

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