I wish my app to send an email but do not want the user to confiirm they are sending it.

below is my code for sending the e-mail.

VB Code:
  1. Private Sub Command1_Click()
  2.     Dim objOutLookApp As New Outlook.Application
  3.     Dim objNameSpace As Outlook.NameSpace
  4.     Dim objMail As Outlook.MailItem
  5.     Dim colAttachment As Attachments
  6.        
  7.     Set objOutLookApp = Outlook.Application
  8.     Set objNameSpace = objOutLookApp.GetNamespace("MAPI")
  9.  
  10.     Set objMail = objOutLookApp.CreateItem(olMailItem)
  11.     objMail.To = EMAILADDRESS
  12.     objMail.Subject = "subject"
  13.     objMail.Body = "message"
  14.     Set colAttachment = objMail.Attachments
  15.     colAttachment.Add ("c:\test.txt")
  16.         objMail.Send
  17. End Sub