Excel Mail Merge with Outlook

Wizard23

New Member
Joined
Aug 19, 2015
Messages
10
Hi,

Is it possible to create a form on excel to have it mail merge with outlook and be sent out to clients ?

I.E. I want to create a document in excel where you can answer questions and those questions get answered for us and put nicely back into excel. If anyone know how this would be setup through a macro or just in general that would be great. All I have found so far is just how you can put in specific names,dates,email etc.

Thanks again !
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Wizard - try this

Dim OutApp As Object
Dim OutMail As Object


DoEvents
On Error Resume Next

Set OutApp = CreateObject("Outlook.Application")
OutApp.session.Logon
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next

With OutMail
.To = "YOURMAIL@TEST.COM"
.Subject = "SUBJECT"
.HTMLBody = "JOBS COMPLETED FOR TODAY...BLAH BLAH BLAH"
.Display
.Send

End With
On Error GoTo 0
OutApp.session.Logoff
Set OutMail = Nothing
Set OutApp = Nothing
 
Upvote 0
Wizard - try this

Dim OutApp As Object
Dim OutMail As Object


DoEvents
On Error Resume Next

Set OutApp = CreateObject("Outlook.Application")
OutApp.session.Logon
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next

With OutMail
.To = "YOURMAIL@TEST.COM"
.Subject = "SUBJECT"
.HTMLBody = "JOBS COMPLETED FOR TODAY...BLAH BLAH BLAH"
.Display
.Send

End With
On Error GoTo 0
OutApp.session.Logoff
Set OutMail = Nothing
Set OutApp = Nothing

Hi,

This just sends email to one receipeient. I am curious is there a way to create a macro that sends to a list of mutiple recepients in an excel document and then tracks their responses to a questionaire in excel as well??
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,665
Members
449,462
Latest member
Chislobog

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