Hey,
I just realize that Aspose.Email for .net adding "This is an evaluation copy of Aspose.Email for .NET." into email and also adding to subject.
I use stream for license and our license will expire
<SubscriptionExpiry>20171213</SubscriptionExpiry>
<LicenseVersion>3.0</LicenseVersion>
Well we have this problem only for email conversion. Rest of doing OK.
This is my code how i implemented the license
protected override void InitializeLicense() { lock (licenseLockObj) { if (AsposeLicenseStream == null) return; var license = new License(); try { AsposeLicenseStream.Seek(0, SeekOrigin.Begin); license.SetLicense(AsposeLicenseStream); AsposeLicenseStream.Seek(0, SeekOrigin.Begin); Logger.Info("Aspose License was set for email"); } catch (Exception e) { Logger.Error("While aspose license for email is applied, an error occured: " + e.ToString()); throw; } } }
There is no exception and even "license.IsLicensed" return true. It seems there is no problem. I convert msg file to mhtml by using aspose.email and then to pdf by using aspose,word.
I thought that maybe aspose.word has problem but i saved msg as mhtml, i also see these things. (I added it as an attachment)
If its necessery i can send the license to you also. but it works with other product.
Aspose.Email version is 2016.12.10
Product Version is 16.12.0.0
We do not want to update dlls, maybe we will face another issue. Then we prefer to not update if its not mandatory in this case.
I do not have any exception or error. All seems fine but only the result has this external text.
We are ready for release our product but because of this problem, we cant. I will be happy if you help us ASAP.