Search
Follow Us
Categories
- Success Stories(157)
Archives
Author Archives: Iret
New MailMerge features in Aspose.Network
Aspose.Network 3.0 makes it simpler and easier to create E-Mail newsletter or subscription solutions. A new sophisticated E-Mail Template Engine is embeded, which provides lots of cool features and function and greatly reduce the the programming works.
Top Features in MailMerge:
- The First Email Component supports using Customer Defined Function in the template. For example, you can register a TemplateRoutine, and use it in the template file.
- Creates E-mail template from file
- Creates E-mail template from MailMessage instance
- Supports
Posted in Kyle Huang
Aspose.Network 3.0 Beta Available
Dear Customers,
Aspose.Network 3.0 Beta , version 3.0.0.0807, is available.
What’s New in Aspose.Network 3.0 Beta
- High compatible with .NET 2.0 E-Mail APIs, and Work fine under .NET 1.1 and .NET 2.0 frameworks. Therefore, .NET developers can easily migrate their E-Mail applications.
Example code
// Command line argument must the the SMTP host.
SmtpClient client = new SmtpClient(“localhost”, “test001”, “test”);
// Specify the e-mail sender.
// Create a mailing address that includes a UTF8 character
// in the display name.
Posted in Kyle Huang
Aspose.AdHoc 1.5.3.0 Released
Dear Customers,
We’ve released Aspose.AdHoc 1.5.3.0.
We’ve released Aspose.AdHoc 1.5.3.0.
- Fix: No display in the dropdown list while contains DBNull value(Refers:http://www.aspose.com/Community/forums/thread/52538.aspx)
- Supports parsing select SQL statments like “SELECT * …”(Refers:http://www.aspose.com/Community/forums/thread/53625.aspx)
Posted in Kyle Huang
Aspose.Network Setup Package Update
Dear Customers,
We have just updated the setup package for Aspose.Network. A new quick start tutorial explorer is added into this setup package, which contains more than 20 code samples (both C# and VB)and relative notes.
It could be good for new users to quickly start their network programming task.
Available Here:
http://www.aspose.com/Downloads/Aspose.Network/2.4.5.0/Default.aspx
Thanks.… Continue Reading
Posted in Kyle Huang
Aspose.Network 2.4.5.0 Released
Dear Customers,
We’ve released Aspose.Network 2.4.5.0 hotfix.
In this hotfix,
- Fix a bug in BeginDownload function of the FtpClient class, which may lead to close the local stream before download completed
- Add a new property namely RemoteTagetPath in TransferBroken EventArgs and TranferCompleted EventArgs. Therefore, we can use this property to determines which remote file is the uploading or downloading.
Thanks… Continue Reading
Posted in Kyle Huang
Aspose.Network 2.4.4.0 Released
Dear Customers,
We’ve released Aspose.Network 2.4.4.0.
What’s new features in this version:
- Supports Imap v4 protocols, a new Aspose.Network.Imap namespace is exposed.
… Continue Reading[C#]
ImapClient client = new ImapClient(“127.0.0.1”, “user”, “password”);
client.Connect(true);
Console.WriteLine(“Selecting folder ‘{0}’…”, “inbox”);
//select the inbox mail folder
client.SelectFolder(ImapFolderInfo.Inbox);
ImapFolderInfo folder = client.CurrentFolder;// Show number of messages in the folder
Console.WriteLine(“{0} messages found.”, folder.TotalMessageCount);
MessageInfoCollection list = client.GetMessageInfoList();// Download each message
for (int i = 0; i < list.Count; i++)
{
ImapMessageInfo message
Posted in Kyle Huang
IMap feature is coming up in Aspose.Network
Dear customers,
Aspose.Network will support IMap features soon!… Continue Reading
Posted in Kyle Huang
Aspose.Network 2.4.1.0 Released
Dear Customers,
We’ve released Aspose.Network 2.4.1.0.
- Fixed some bugs in iCalendar features
Thanks.… Continue Reading
Posted in Kyle Huang
Aspose.Network setup package updated
Dear Customers,
We’ve updated Aspose.Network setup package.
Available here:
http://www.aspose.com/Downloads/Aspose.Network/2.4.0.0/Default.aspx
Thanks.… Continue Reading
Posted in Kyle Huang
Aspose.Network 2.4.0.0 Released
Dear Customers,
We’ve released Aspose.Network 2.4.0.0.
New features in this version:
- Support iCalendar features in Mail component, which will enable developer send the meetings or schedules in the email.
A new class named CalendarMessageBuilder (Aspose.Network.Mail.CalendarMessageBuilder) is exposed, for creating the iCalendar standard compliant email messages. It is the major entry to use the iCalendar features.
[C#]
MailMessage msg = new MailMessage(“guangzhou@aspose.com“, “kyle.huang@aspose.com“);
msg.Subject = “Release Meeting”;
CalendarMessageBuilder cmb = msg.GetCalendarBuilder();//Get the CalendarMessageBuilder
cmb.BuildCalendarMessage(“Building A Room 504”, “Release … Continue Reading
Posted in Kyle Huang