Aspose Evaluation message generated even with aspose license

Hi Aspose Team,

We are using aspose.email, aspose.words dlls from nuget in our .netframework 4.8 project to convert files like doc, docx, msg to pdf file and we have aspose license with validity till 2026

Subscription expiry date from license file is:
20260117

But still we are getting evaluation message on the genertated pdf file as below

Evaluation Only. Created with Aspose.Words. Copyright 2003-2020 Aspose Pty Ltd.
Evaluation Only. Created with Aspose.Email for .NET. Copyright 2002-2025 Aspose Pty Ltd.

We tried Aspose.Email dll with following versions 23.3, 24.12, 25.1,25.3 but all of these versions are giving evaluation message even with licensing, could you please suggest on which latest version can be referred to get rid of the evaluation message?

Thanks

Hello @Nithyav,

Please make sure you are calling SetLicense correctly before any Aspose object is instantiated:


Aspose.Words.License wordsLicense = new Aspose.Words.License();
// Set the license file through its path
wordsLicense.SetLicense("Aspose.Words.lic");

Aspose.Email.License emailLicense = new Aspose.Email.License();
// Set the license file through its path
emailLicense.SetLicense("Aspose.Email.lic");

Place this code at the start of your app.