Check this:
http://stackoverflow.com/questions/11263483/how-do-i-trigger-a-macro-to-run-after-a-new-mail-is-received-in-outlook

Cheers!!


On Mon, Jul 21, 2014 at 1:41 PM, Vaibhav Joshi <[email protected]> wrote:

> Hi
>
> Macro which you gave is not related to what you wanna do!!
>
> what exactly you wanna do when outlook receives email etc...
>
> Cheers!!
>
>
> On Mon, Jul 21, 2014 at 10:00 AM, 'LAKSHMAN PRASAD' via MS EXCEL AND VBA
> MACROS <[email protected]> wrote:
>
>> Dear expert,
>>
>> I have a macro
>>
>> Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
>> Boolean)
>>
>>
>> 'Private Sub Workbook_beforclose()
>>
>>
>> 'Sub sendmail()
>> '(mailid As String, nm As String, flname As String)
>> Dim OutApp As Object
>> Dim OutMail As Object
>>
>> Set OutApp = CreateObject("Outlook.Application")
>>
>> Set OutMail = OutApp.CreateItem(0)
>>
>> On Error Resume Next
>> With OutMail
>> .To = "[email protected]"
>> .Subject = "Hello!"
>> .Body = "Dear " & nm & "," & vbNewLine & vbNewLine & "HELLO !" &
>> vbNewLine & vbNewLine & "Thank you"
>> .Attachments.Add "c:\aaa.xlsb"
>> .Send
>> End With
>> On Error GoTo 0
>> Set OutMail = Nothing
>> Set OutApp = Nothing
>>
>>
>> End Sub
>>
>>
>> Need to run macro when outlook 2007 sent/receive or refresh or mail
>> arrive in inbox
>>
>>
>>
>> Lakshman Prasad
>>
>> --
>> Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It's
>> =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
>> https://www.facebook.com/discussexcel
>>
>> FORUM RULES
>>
>> 1) Use concise, accurate thread titles. Poor thread titles, like Please
>> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
>> will not get quick attention or may not be answered.
>> 2) Don't post a question in the thread of another member.
>> 3) Don't post questions regarding breaking or bypassing any security
>> measure.
>> 4) Acknowledge the responses you receive, good or bad.
>> 5) Jobs posting is not allowed.
>> 6) Sharing copyrighted material and their links is not allowed.
>>
>> NOTE  : Don't ever post confidential data in a workbook. Forum owners and
>> members are not responsible for any loss.
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "MS EXCEL AND VBA MACROS" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> To post to this group, send email to [email protected].
>> Visit this group at http://groups.google.com/group/excel-macros.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

Reply via email to