G
Guest
I have a program that sends emails automatically. It works correctly, but
each time it sends an email, a message appears warning the user and they have
to wait 5 seconds for the Yes button to appear before they can click it.
This is a bit annoying.
Is there an Outlook setting that will stop this message appearing? Or can I
edit the code?
It is written in VB .Net:
Dim Email As New OutlookClass
Dim Message As Outlook.MailItem
Message = Email.OutlookApp.CreateItem(0)
Message.To = "Email address"
Message.Subject = "TCI Card "
Message.Body = "Text"
Message.Send()
Thanks,
Helen
each time it sends an email, a message appears warning the user and they have
to wait 5 seconds for the Yes button to appear before they can click it.
This is a bit annoying.
Is there an Outlook setting that will stop this message appearing? Or can I
edit the code?
It is written in VB .Net:
Dim Email As New OutlookClass
Dim Message As Outlook.MailItem
Message = Email.OutlookApp.CreateItem(0)
Message.To = "Email address"
Message.Subject = "TCI Card "
Message.Body = "Text"
Message.Send()
Thanks,
Helen