Author |
|
AengusO Newbie
Joined: 26 February 2010 Location: Ireland
Online Status: Offline Posts: 22
|
Posted: 26 February 2010 at 9:20am | IP Logged
|
|
|
Hi
I am currently evaluating the Mailbee .Net Objects.
I find when I a forward a selection of emails from my Outlook folder, Outlook sends an email with each email as an attachment with a name based on the subject of the email eg "Customer enquiry" etc.
When I download the sent email using MailBee Imap object, I can donwload the email but the attachments have names like "a1b3c095580252367122.eml" etc.
It there any way I can retrieve more meaningful names for the downloaded attchments ?
Thanks.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 26 February 2010 at 9:40am | IP Logged
|
|
|
If you download full message, save it to EML file and check its source, you should see something like this for the attachment there:
Code:
Content-Type: application/octet-stream;
name="filename.zip"
Content-Disposition: attachment;
filename="filename.zip"
Content-Transfer-Encoding: base64 |
|
|
Do you have either name or filename value specified in your particular case?
Anyway, you can certainly specify any custom filename for the attachment when saving it to disk.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|