I have created a simple suggestion form with a basic command button. However when I click submit, it opens two email windows rather than 1.
Code:
Private Sub CommandButton1_Click()
Options.SendMailAttach = True
ActiveDocument.SendMail
End Sub
Also, is there a way I can make the button hidden after submit is clicked so it doesn't send through with the attachment?
Thanks