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 Removed)"
.CC = ""
.BCC = ""
.From = """Ron"" <(E-Mail Removed)>"
.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)