Harlequin007
Technical User
Morning all.
I have a form with a command button that uses Outlook (Outlook will be the default mail application on users systems). however, it simply sends a mail.
Can I have it open the mail and allow the user to edit this prior to sending...?
----------------------------
Cogito Ergo Sum
----------------------------
I have a form with a command button that uses Outlook (Outlook will be the default mail application on users systems). however, it simply sends a mail.
Can I have it open the mail and allow the user to edit this prior to sending...?
With objEmail
.To = "Recipient"
.Subject = "Subject Line"
.Body = "Automated Response From The Above Database"
.Send
----------------------------
Cogito Ergo Sum
----------------------------