I use the code below to automatically send an email when the user presses a button on my form. They now want to preview the email and then hit send in outlook. I know .send is the command for auto sending but what would i use the have them preview the email first? Thanks..
If Me.EmailType = “No HD Ticket” Then
On Error GoTo ErrHandler
Set objDoc = objWord.Documents.Open(“f:nohdticket.doc”)
With objDoc.MailEnvelope.Item
.To = Nz(srt, “”)
.Subject = strSubject
.SentOnBehalfOfName = “hdassist@ima.com”
If bSite = False Then
.Attachments.Add “f:hdReport.rtf”, olByValue, 1, “CPRReport_rpt.rtf”
End If
.Attachments.Add “f:tipsheett.pdf”, olByValue, 1, “STN Contact List”
.Send