Excel VBA Outlook Application

Dewitt

New Member
Joined
Apr 9, 2018
Messages
1
I need a work around for the ".Display" element of this code (underlined)


The macro is to auto write and send an email to every contact logged in this table by setting the range.
The display element is necessary for launching the default signature into the email but it is causing problems when going through multiple contacts.

I tried an ".ApplicationWait" function. (or whatever it goes like) but it caused it to lag and crash.

Needless to say the signature is absolutely necessary but could do with it sending each email without having to open it to send the email.

Any help would be much appreciated.


Sub CombinedMacro()
Dim App As Outlook.Application
Dim Mail As Outlook.MailItem
Dim signature As String
Set App = NewOutlook.Application
Set Mail =App.CreateItem(MailItem)
For i = 2 To 2
WithMail
.Display
End With
signature =Mail.HTMLBody
With Mail
.To =Cells(i, 1).Value
.Subject = Cells(i, 6).Value
.HTMLBody = "TEXT"& vbNewLine & signature
.Send
End With
Next
End Sub

Thanks in advance.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Forum statistics

Threads
1,223,705
Messages
6,173,996
Members
452,542
Latest member
Bricklin

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