Category Archive: Aspose.Email Product Family

Official blog of Aspose.Network for .NET with news of newly supported features, hot fixes, technical articles, tips and videos.

Aspose.iCalendar v1.2.5 Released

What’s New

  • 3738 – Demo projects for VS2005.

Fixes

  • 3737 – Error 2869   when the installer works under Windows Vista.

Download URL: http://www.aspose.com/Community/Files/54/aspose.icalendar/default.aspx

Continue Reading
Posted in Aspose.Email Product Family |

Aspose.NETwork for .NET Hotfix v3.5.3.0 Released

What’s New?

  • 3529 – LinkedResource of MailMessage can be saved locally.
  • 3528 – Add BulkSend performance counters, including TotalSent, TotalFailed.
  • 3525 – Make MessageId propery of MailMessage class writable.
  • 3522 – FileDropTargetManager supports dragging & dropping files from Windows Explorer.
  • 3530 – Launch Outlook mail client with attachments.

What’s Fixed?

  • 3527 – Loading of some saved Eml results in infinite loop.
  • 3524 – Loading of saved Eml results in erroneous content.
  • 3523 – Cannot load Msg files with ‘\r’ character in the e-mail
Continue Reading
Posted in Aspose.Email Product Family |

Aspose.Network 3.5.2.0 Released

Dear Customers,

We’ve released Aspose.Network v3.5.2.0.

What’s new in this hotfix:

  • Enhanced supporting embedded OLE document in Microsoft Outlook Message.
    • Support extracting embedded OLE1 format document
    • Support extracting embedded Word/Excel/PowerPoint document
  • Enhanced converting from Msg to Mht format.
    • Support showing placeholder in hmtl body if converting to mht message
    • Support more Mht format saving options, by exposed a new class MhtMessageFormatter.
    • Support customize the DateTime format
    • Support removing attachments
  • Support setting body charset using BodyEncoding propery in MailMessage class
  • Fixed the bug about
Continue Reading
Posted in Aspose.Email Product Family |

Retrieving Property Information by Mapi Property Tag

MapiProperty Class represents a Mapi property, which contains:

  • Name, a string represents the name of the property
  • Tag, a long represents the tag of the property
  • Data, a byte array represents the data of the property

Steps to Query Mail Box Status

  • Create a MapiMessage instance by loading from files or stream
  • Get the MapiProperty from MapiMessage.Properties by MapiPropertyTag keys
  • Get the Data of the MapiProperty by method GetXXXX

Example

 [C#]
 //load from file
 MapiMessage msg = 
Continue Reading
Posted in Aspose.Email Product Family |

Aspose.iCalendar 1.2.4 Released

From now on Aspose.iCalendar assemblies are supplied bult for .NET 1.1 and .NET 2.0.

  • C:\Program Files\Aspose\Aspose.iCalendar\Bin\net1.1 – contains Aspose.iCalendar.dll and Aspose.iCalendar.PocketPC.dll for .NET 1.1.
  • C:\Program Files\Aspose\Aspose.iCalendar\Bin\net2.0 – contains Aspose.iCalendar.dll and Aspose.iCalendar.PocketPC.dll for .NET 2.0.

To download http://www.aspose.com/Downloads/Aspose.iCalendar/Default.aspx

 … Continue Reading

Posted in Aspose.Email Product Family |

Aspose.Network 3.5.1.0 Released

Dear Customers,

We have released Aspose.Network 3.5.1.0. In this release, we enhanced the functionality of loading and parsing Microsoft Outlook Message Format (.Msg), according to the community feed backs.

What’s new:

  • Add a new function to indicate the embedded Outlook Message, MapiObjectProperty.IsOutlookMessage
  • Support reading/saving embedded objects (Ole object) from Outlook message.
  • Enhance the format transfering from Outlook Message format to EML format.
    • If the mime header is empty, we will try to load information from the relative mapi properties.
    • Convert Rtf
Continue Reading
Posted in Aspose.Email Product Family |

Aspose.Network 3.5.0.0 Released

Dear Customers,

We’ve released Aspose.Network 3.5.0.

What’s new in this release:

  • Fully support parsing Microsoft Outlook Message document, including:
    • Read properties by Mapi property tags
    • Access recipient information
    • Read and Save attachments
    • Read Ole object
    • Multi-language support
    • Rtf body decompression
  • FileDropTargetPanel supports drag & drop Outlook message attachments.
  • Fixed a bug in reading Eml file
  • Other fixes from 3.3.*

Thanks… Continue Reading

Posted in Aspose.Email Product Family |

How to access Mapi propertes in a Microsoft Outlook Message files

In this article, we will demonstrate how to access mapi propertes in a Microsoft outlook message files (*.msg files), using Aspose.Network.

[VB]

            Dim message As MapiMessage
 
            ‘load and parse the Microsoft Outlook Message files
            Imports (MapiMessageReader mr = New MapiMessageReader(“c:\sample.msg”))
            {
                message = mr.ReadMessage()
            }
 
            ‘read subject property. Or you can use MapiMessage.Subject too.
            Dim subject As String =  message.GetPropertyString(MapiPropertyTag.PR_SUBJECT)
 
            ‘read body property. Or you can use MapiMessage.Body too.… Continue Reading

Posted in Aspose.Email Product Family |

Aspose.Network 3.5 beta2 supports parsing Microsoft outlook message files

Dear Customers,

We have completed the Aspose.Network 3.5 beta2 development. In this release, we provide fully supporting for parsing Microsoft Outlook Message documents (*.msg files).

By using Aspose.Network.Outlook.MapiMessage class, you can access all the information in the message files. Moreover, we also support getting the property by Mapi property tags, message body decoding, attachment saving and etc.

Please download the beta2 release, share your idea to us. We will make an official release coming weeks.

Download Link

http://www.aspose.com/Community/forums/storage/188/76302/Aspose.Network%20bet2.zip

[C#]

            using Aspose.Network.Outlook;… Continue Reading

Posted in Aspose.Email Product Family |

Aspose.Network 3.3.1 hotfix released!

Dear Customers,

We’ve release Aspose.Network 3.3.1 hotfix!

In this hotfix release, Outlook drag drop samples have been updated.… Continue Reading

Posted in Aspose.Email Product Family |