How to create an HTML mail and open it with outlook using CDO

Joined
Apr 14, 2008
Messages
1
Reaction score
0
Hi, I was going thru Ron's code to send email thru excel using CDO http://www.rondebruin.nl/cdo.htm. I was wondering if there is any method where I can just open the HTML mail I have created in outlook and not send it. Purpose it to manually review the mail before sending. Thus, Instead of

With iMsg
Set .Configuration = iConf
.To = "(e-mail address removed)"
.CC = ""
.BCC = ""
.From = """Ron"" <[email protected]>"
.Subject = "Important message"
.HTMLBody = strbody
.Send
End With

.Send method is not desired. I would like to know if there is some method to just open the mail. (Like .Display or something)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top