Though vba I compose an email and send it and also save it as a msg file. Code as below:
However This saves the a copy of the unsent message. What I would like to do is send the message and save a copy of the actual sent message so that it does not say message not sent on the saved msg file.
Has anyone done anything similar or come accross any thing that will help.
Hope I've explained correctly.
Cheers,
Neemi
Code:
With MailOutLook
.To = strTo
.cc = strCC
.subject = strSubject
.Body = strBody
.SaveAs strPath,OLMsg
.Send
End With
However This saves the a copy of the unsent message. What I would like to do is send the message and save a copy of the actual sent message so that it does not say message not sent on the saved msg file.
Has anyone done anything similar or come accross any thing that will help.
Hope I've explained correctly.
Cheers,
Neemi