
Add attachment to existing mail (without deleting content)
I'm tryin to add an attachment via
VBA to an existing e-mail (already
with content).
The code
Set myitem = myOlApp.ActiveInspector.CurrentItem
myitem.Attachments.Add "filename", olByValue
attaches the file "filename" by deleting the content of the mail.
How do I manage to attach the file, without deleting the content?
May the parameter "position" be the clue?
Any hints?
TIA
Guido