Hi im making a program that sends emails. The programs sends them via outlook at the moment and does work but it comes up with an enoying message each time you send email sayin that this could be a virus do you want to go ahead. How do i stop the massage poping or is their another way of sending emails.
This is the coding im using
Dim oOApp As Outlook.Applica tion
Dim oOMail As Outlook.MailIte m
oOApp = CreateObject("O utlook.Applicat ion")
oOMail = oOApp.CreateIte m(Outlook.OlIte mType.olMailIte m)
With oOMail
.To = "email address to send to"
.Subject = "email from vb"
.Body = "this email was sent from vb"
.Send()
End With
plus does anybody know how to connect to an online database
This is the coding im using
Dim oOApp As Outlook.Applica tion
Dim oOMail As Outlook.MailIte m
oOApp = CreateObject("O utlook.Applicat ion")
oOMail = oOApp.CreateIte m(Outlook.OlIte mType.olMailIte m)
With oOMail
.To = "email address to send to"
.Subject = "email from vb"
.Body = "this email was sent from vb"
.Send()
End With
plus does anybody know how to connect to an online database
Comment