VBA macro replying to an e-mail from shared mailbox

Tomek123

New Member
Joined
Jan 12, 2018
Messages
1
Hi guys

<tbody>
[TD="class: votecell"][/TD]
[TD="class: postcell"] I'm writing macro that finds and reply to mail from shared mailbox. Everything works with my personal mailbox, the problem is addressing the shared one in the code. I tried something similar to the solution from this question: How to run a macro on a shared mailbox in Outlook 2013
but I receive this error: Object variable or with block variable not set. Could you please tell me what I'm doing wrong?



[/TD]

</tbody>

<code>Sub Test()

Dim olApp As Object
Dim olNS As Object
Dim i As Long
Dim olShareName As Object


Set olApp = CreateObject("Outlook.Application")

Set olShareName = olNS.CreateRecipient("shared@inbox.com")
Set olNS = olApp.GetNamespace("MAPI").GetSharedDefaultFolder(olShareName, olFolderInbox)


'.Folders("Test")

i = 1

For Each olMail In olNS.Items
If InStr(olMail.Subject, "test") <> 0 Then

Set oReply = olMail.Reply
oReply.HTMLBody = "Thank you!!!" & oReply.HTMLBody
oReply.Display


i = i + 1

End If


Next olMail



End Sub</code>
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,223,910
Messages
6,175,318
Members
452,634
Latest member
cpostell

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