Author |
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 06 January 2005 at 2:24pm | IP Logged
|
|
|
Hi,
I am using the SMTP component to send messages with attachments of content-type = "message/rfc822"
and the attachments are MIME messages.
When Outlook looks at the messages and they all look fine.
But when I send messages to like yahoo, the Forward Messages parts are empty in Yahoo.
Basically, the attachments are like empty even though the messages are received.
Any suggestion?
Thanks!
David
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 07 January 2005 at 8:33am | IP Logged
|
|
|
It seems Yahoo cannot handle base64-encoded forwarded messages. Filename parameter should be omitted, too.
We've added the following option to AddAttachment method - if you specify FilenameInMessage="<none>", only Content-Type will be set in attachment headers. Also, attachment will be added in unencoded form (e.g. no base64 transform is applied).
Example:
Smtp.AddAttachment "C:\temp\1.eml", "message/rfc822", "", "<none>"
You can download updated version of MailBee.dll from http://mailbee.iforum.com/mg/mailbee.zip
Regards,
Alex
|
Back to Top |
|
|
Guests Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 07 January 2005 at 10:23am | IP Logged
|
|
|
That's what I thought after looking into it.
And I was thinking of modifying the rawtext to handle it and there is no way I can get it done as fast as having the updated dll.
Thank you very much!
David
|
Back to Top |
|
|