Outlook dialog box prompts after following VBA code:
With outMessage
.To = email
.Subject = jobNO & " New Customer Service Issue"
.body = "New Customer Service Issue, # " & jobNO & " " & JObname & " issue: " & csIssue
.send
End With
Dialog box reads "A program is trying to automatically send e-mail on your behalf. Do you want to allow this?"
What VBA code can I add so this dialog box does not appear?
Thanks
With outMessage
.To = email
.Subject = jobNO & " New Customer Service Issue"
.body = "New Customer Service Issue, # " & jobNO & " " & JObname & " issue: " & csIssue
.send
End With
Dialog box reads "A program is trying to automatically send e-mail on your behalf. Do you want to allow this?"
What VBA code can I add so this dialog box does not appear?
Thanks