Hi
I am using the CDo.Message object to send out emails with attachements. The email works but my problem is when I receive the email in my google
mail inbox, the attachments shows and works but the name of the document shows "noname"?
I would like to see the email attachment with its proper name if possible (not noname). The attachments is there and is the correct document.
Also, When I send it to my hotmail account, the attachment paperclip icon shows but when I open the email, there is no attachement at all (or any indication of it being blocked).
I have used the standard code of:
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Example CDO Message"
objMessage.From = "
[email protected]"
objMessage.To = "
[email protected]"
objMessage.TextBody = "This is some sample message text."
objMessage.AddAttachment "c:\temp\newsletter.doc"
objMessage.Send
Could anybody point out if I have missed a parameter or doing something wrong?
My host is 1and1 if that may be of use to anyone.
I'm stumped.
Anybody help?
Many thanks to anyone who can offer help