Quantcast
Channel: Aspose.Email Product Family
Viewing all 1367 articles
Browse latest View live

EMLX File not able to properly load body

$
0
0
Hello Team,

I've been using Aspose.Email for creating pst and using latest version of it 16.12.0.0

I can share you the emlx file after loading the content its showing extra xml content which is in appropriate.

If i open the same emlx file in MAC (Apple Operating System) as emlx format belongs to MAC OS it shows properly without any extra xml content, i've attached screenshot of preview of MAC machine and emlx file in the attachment.

Is it possible to get this solved on HIGH Priority as we are already behind schedule.

Really appreciate your work.

Thank You.

Regards,
Amit

How to display the on behalf of sender and date when sending task in java?

$
0
0
Dear,
We are using licensed apose 6.7.0(jdk 1.6) to achieve the requirement of sending task to specified user.

Right now the task could be successfully created and sent out, but on receiving it, the 'on behalf of' message could not display the sender and the sent date.

attachment is the task received.
Before asking for help here, i already searched many materials but no result.

From the task result.png, you could see the first rectangle just show the on behalf of but no sender address, and the second rectangle show the wrong date and time.

Codes:
               String receiver = "example@example.com";

                Calendar calendar = Calendar.getInstance();
                Date startDate = calendar.getTime();
                calendar.add(Calendar.DATE, 1);
                Date endDate = calendar.getTime();
                calendar.add(Calendar.DATE, -1);
                Date reminderDate = calendar.getTime();

                MapiTask task = new MapiTask(taskBean.getSubject(), "", startDate, endDate);
                task.setBodyContent(taskBean.getBody(), 1);
                task.setReminderSet(true);
                task.setReminderTime(reminderDate);

                task.setPercentComplete(0);
                task.setEstimatedEffort(0);
                task.setActualEffort(0);
                task.getUsers().setAssigner(MapiElectronicAddress.to_MapiElectronicAddress(alertSenderEmail));
                task.setHistory(MapiTaskHistory.Assigned);


                task.getUsers().setOwner(receiver);
                task.getUsers().setLastAssigner(alertSenderEmail);
                task.getUsers().setLastDelegate(alertSenderEmail);

                task.getUsers().setDelegator(alertSenderEmail);

                task.getUsers().setOwnership(MapiTaskOwnership.AssignersCopy);

                
                task.setSensitivity(MapiSensitivity.Personal);
                task.setStatus(MapiTaskStatus.NotStarted);
                task.save(path + "MapiTask.msg", TaskSaveFormat.Msg);


                MailMessageLoadOptions loadOptions = new MailMessageLoadOptions();
                loadOptions.setMessageFormat(MessageFormat.getMsg());
                loadOptions.setFileCompatibilityMode(FileCompatibilityMode.PreserveTnefAttachments);

                // load task from .msg file
                MailMessage eml = MailMessage.load(path + "MapiTask.msg", loadOptions);
                eml.setFrom(new MailAddress(alertSenderEmail));
                eml.setSubject(taskBean.getSubject());
                eml.getTo().clear();
                eml.setReadReceiptTo(MailAddressCollection.to_MailAddressCollection(receiver));
                eml.setSensitivity(MailSensitivity.Personal);

                // send email to:
                MailAddress address = new MailAddress(receiver);
                MailAddressCollection addresses = new MailAddressCollection();
                addresses.addMailAddress(address);
                eml.setTo(addresses);


                // We should cover all scenarios for delivery notification
                eml.setDeliveryNotificationOptions(DeliveryNotificationOptions.OnSuccess | DeliveryNotificationOptions.OnFailure | DeliveryNotificationOptions.Delay);
                SmtpClient client = new SmtpClient(smtpServerAddress, Integer.parseInt(smtpServerPort), "", "");
                client.setConnectionTimeout(SMTP_CONNECTION_TIMEOUT);
                client.setTimeout(SMTP_OPERATION_TIMEOUT);

                Log.info("Task is ready to sent to receiver: " + receiver);
                client.send(eml);
                Log.info("Task was sent to receiver via " + smtpServerAddress);

EML file's attachment extension is getting changes & format is getting change Aspose

$
0
0
Hello Team,

I've been using Aspose.Email latest version 16.12.0.0 and got an issue that if an eml file contains attachment such as .eml it change it to msg(not just extension but also its format).

I've attached the eml sample too, please use the following code :

class Program
    {
        static void Main(string[] args)
        {
            MailMessage f_Objmailmessage = null;
            MapiMessage f_mapimessage = null;

            try
            {
                string f_tmpEmlPath = "C:\\Different fields.eml";
                f_Objmailmessage = MailMessage.Load(f_tmpEmlPath, new EmlLoadOptions());

                f_mapimessage = MapiMessage.FromMailMessage(f_Objmailmessage, MapiConversionOptions.UnicodeFormat);

            }
            catch (Exception ex)
            {
                            
            }
        }
    }

After loading into mapi message it show that the attachment of eml has change to msg, that is very inappropriate.

Can you please take this issue into account and resolve this on high priority as we are already behind our schedule and i'm facing too many issue with Aspose.

Hoping this to be get done by today.

Thank You.

Regards,
Amit 

I am facing problem of Calendar.

$
0
0
I am Using Aspose v16.11 but it is not able to load Calendar properly its giving Exception like.
ASPOSEWriter -> saveAppoinmentToPST() : "BEGIN" property should be at the first place in the properties
ERROR2016-12-28 13:05:48 - Stack Strace ::    at #=qAa3Jt$00ImBdPOotmxzC0wVE099UmJOkSi3JacK3DCaGzLsrklrlckCDaEj$YMq4.#=q5bO08YDFnBvi4LMdCBXS18Z6RElqdVIctMnUYm9NNz8=(#=qa6AYv1RNXhkXMTq8larvV6z2N_WQ04iNI0cUP6xyla_VOQwBDjYPy1idLf1HASNIH78siUmvknfLJ9oCcBf3KQ== #=qO3Fvpretm2p5lH2df54fvA==)
   at #=qAa3Jt$00ImBdPOotmxzC0wVE099UmJOkSi3JacK3DCaGzLsrklrlckCDaEj$YMq4.#=quwsffJE4qmJSwsY$EEeahg==(Stream #=qOJOTV1rdojY_ikK15A$_$w==, Boolean #=qs9$i90IkrM30Vz5r33dxwA==)
   at Aspose.Email.Mail.Appointment.Load(Stream stream, AppointmentLoadOptions options)
   at Aspose.Email.Mail.Appointment.Load(String filePath, AppointmentLoadOptions options)
   at Aspose.Email.Mail.Appointment.Load(String filePath)
   at PSTWriter.ASPOSEWriter.saveAppoinmentToPST(AppointmentItem p_AppointmentObj, String p_FolderPath, FolderType p_FolderType)

Email verifications.

$
0
0
I am trying to check the email component ..
I first add L: Aspose.Email.dll  to my project.. then write sample code to verify email ..

Error message appears after run the app:

"The mail address is invalid,return code is : MailServerValidationError."

Is there any setting need to be changed somewhere ..??
Is there any help for that..
Thanks
Faris

Email address not visible in converted MHTML file

$
0
0
Hi,

While converting email message to MHTML, we have noticed that sometimes email address is not made part of output MHTML. This creates problems for us as we have to tally the output with input using out meta data. Please guide if we are missing anything.

MailMessage eml = MailMessage.Load(filename);

eml.Save(filename + ".mhtml", SaveOptions.DefaultMhtml);

Sending HTML as mail body with embedded fonts etc.

$
0
0
Hi,
I have a PDF document which I have converted to HTML using Aspose.PDF.
I have embedded everything into the html (see code below).

When using the "HtmlLoadOptions" of Aspose.Email and sending the email - the output in Microsoft Outlook (and the web-interface), looks strange. However, if I use the "view in webbrowser" in Outlook, the result is better (see attached pictures)

I have used the following code:

            Dim pdfDoc As New Aspose.Pdf.Document(pdfStream)

            Dim newOptions = New Aspose.Pdf.HtmlSaveOptions()
            newOptions.RasterImagesSavingMode = Aspose.Pdf.HtmlSaveOptions.RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground
            newOptions.FontSavingMode = Aspose.Pdf.HtmlSaveOptions.FontSavingModes.SaveInAllFormats
            newOptions.PartsEmbeddingMode = Aspose.Pdf.HtmlSaveOptions.PartsEmbeddingModes.EmbedAllIntoHtml
            newOptions.LettersPositioningMethod = Aspose.Pdf.HtmlSaveOptions.LettersPositioningMethods.UseEmUnitsAndCompensationOfRoundingErrorsInCss
            newOptions.SplitIntoPages = False
            newOptions.CustomHtmlSavingStrategy = New Aspose.Pdf.HtmlSaveOptions.HtmlPageMarkupSavingStrategy(AddressOf SavingToStream)
            pdfDoc.Save("C:\Test\DoesNotMatter.html", newOptions)


--

        Private Shared Sub SavingToStream(ByVal htmlSavingInfo As Aspose.Pdf.HtmlSaveOptions.HtmlPageMarkupSavingInfo)
            Dim loadOptions As New Aspose.Email.Mail.HtmlLoadOptions()

            Dim message = Aspose.Email.Mail.MailMessage.Load(htmlSavingInfo.ContentStream, loadOptions)
            message.From = "Something"
            message.To = "Something"
            message.Subject = "Something"

            ' Send the message using Aspose.Email
            Dim client As New Aspose.Email.Mail.SmtpClient()
            client.Host = "Something"
            client.Port = 25
            client.Send(message)
        End Sub

--

Earlier I have used the "Save as MHTML" (in Aspose.Words), but this option is not available in Aspose.PDF

Am i doing something wrong, or how am I able to insert my PDF document as the "mail body"?
Since the "Save as MHTML" is not available, I have tried to save the pdf as HTML, but its not working 100% just yet

Hope you can help :)

Object reference not set to an instance of an object

$
0
0
Hi there. I am getting messages from exchange public folders and save them into local file system. My code works fine for some PFs, but for some of them I get "Object reference not set to an instance of an object" when execute client.ListMessages(publicFolder.Uri) or client.ListMessagesFromPublicFolder(publicFolder). See the code snippet below: Console.WriteLine("Folder Name: " + publicFolder.DisplayName); //ExchangeMessageInfoCollection msgInfoCollection = client.ListMessagesFromPublicFolder(publicFolder); ExchangeMessageInfoCollection msgInfoCollection = client.ListMessages(publicFolder.Uri); foreach (ExchangeMessageInfo messageInfo in msgInfoCollection) { MailMessage msg = client.FetchMessage(messageInfo.UniqueUri); Console.WriteLine(msg.Subject); string guid = Guid.NewGuid().ToString("N"); msg.Save(string.Concat("guid", ".msg"), SaveOptions.DefaultMsgUnicode); All the input parameters for the call are set. Thanks --arthur }

Windows 10 File Count 0 on DragEventArgs when dragging a file

$
0
0
I have an app written in C#, .Net with Aspose and DevExpress on a Windows 7 platform. I'm migrating this to Windows 10. The application uses Aspose.Cells 7.2.0.0 and Aspose.Email 1.7.1.0. One of the features used is DragandDrop files to a grid. Works great.

When I move to Windows 10 - the draganddrop does not work. On debugging I find that the event e passed to the draganddrop does not have the FileDataObject. The count is 0 and there is no file name present. In the Windows 7 version - in the event e there is a count = 1 and a fileDataObject filename available.

I read that newer versions of Aspose handled this - so I downloaded the latest - Aspose.Cells 9.0.0 and Aspose.Email 6.9.0.

When I drag a file over now, with these new versions - I get a System.AccessViolationException (unhandled). In the error information - the only sensical information points to "DragDropEffects" and "DragEventArgs".

I made what I think are appropriate updates for the new aspose versions - Aspose.Email.windows.forms - OptionsDragandDrop.dragNodesMode set to DragnodesMode.Multiple and the layoutcontrol .OptionsView.AutozsizeInlayoutcontrol set to ResizetoMinSize.

I've upgraded to .Net 4.6.2 - because that's what Windows 10 is supposed to use.

Withthe upgrade to new Aspose - I can't get past the "Attemtping to read or write to protected memory" issue. My guess is there is a setting somewhere - and I have tried a lot of settings with no luck.

Has anyone experienced this and found a solution. Happy to provide code snippets. Included error messages.
Patrice

Issue while fetching email using ImapClient

$
0
0
Hi,

I am trying to fetch the inbox mail count using below code.            

ImapClient client = new ImapClient("servername", 995, "userid", "password");
client.SecurityOptions = SecurityOptions.SSLExplicit;
Console.WriteLine(client.ListMessages().Count);


But I am getting below error -
+OK The Microsoft Exchange POP3 service is ready.


Please help to resolve the issue.

ImapClient: Leaving messages unread

$
0
0
Hi,

I am reading messages from a mailbox but I want them to be left as unread. Is there any such option I can do this?

ImapClient client = new ImapClient("host",port, "username", "password");
client.SecurityOptions = SecurityOptions.Auto;
client.SelectFolder(ImapFolderInfo.Inbox);
ImapMessageInfoCollection msgs = client.ListMessages();

Aspose Convert Mail to Pdf with attachements hypertext links

$
0
0
Hello,

I am converting a mail (.msg) with attachements to pdf format.
The api works well and outputs a pdf with attachments.
My question is : 
Can I convert this mail and add hypertext links to the mail's attachments without including them in the pdf output ?

Best Regards, 
Abderrahmen ISSA

Aspose Email - AbchPersonItemType was not recognized

$
0
0
Hello,

My team uses Aspose Email to develop an application to search for information in 365 exchange server. Recently, we are using the Aspose Email 16.11.0.0 to traverse and retrieve email/messages in Office 365 mail. We tested the library with our personal Office 365 mailbox and got the following exception.

System.InvalidOperationException: There is an error in XML document (1, 893). ---> System.InvalidOperationException: The specified type was not recognized: name='AbchPersonItemType', namespace='http://schemas.microsoft.com/exchange/services/2006/types', at <Item xmlns='http://schemas.microsoft.com/exchange/services/2006/types'>.
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read307_ItemType(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read614_ArrayOfRealItemsType(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read617_FindItemParentType(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read618_FindItemResponseMessageType(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read673_ArrayOfResponseMessagesType(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read679_FindItemResponseType(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderExchangeServiceBinding.Read873_FindItemResponse()
   at Microsoft.Xml.Serialization.GeneratedAssembly.ArrayOfObjectSerializer245.Deserialize(XmlSerializationReader reader)
   at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
   --- End of inner exception stack trace ---
   at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
   at Aspose.Email.Exchange.Schema.Exchange_2013.ExchangeServiceBinding.FindItem(FindItemType FindItem1)
   at #=qxFs8SM7UI1LemESKg7SDPzGq2dnrlwvInrxl5l7QBp5tQ1bJFzM3Eu6pgSEAfn4O.#=qhTZTpzc2INL$SEukBOgEsRE6YDr7OBBSUe$lNGnBbt0=(ExchangeMessagePageInfo #=qBuxfq4ICnCCaA1TysnQg8Q==, String #=qO7pOkoULyBeTTHQNXHjNEA==, Boolean #=qty0pqk327WYpyCCC7jsDig==, Int32 #=qc91qrud9alQTXEqvfeB$5Q==, MailQuery #=qnwdeZ1$g2Brw5ZhXtjic0Q==, ExchangeListMessagesOptions #=qFbptguuYAuZJP7IsKPutsg==)
   at #=qxFs8SM7UI1LemESKg7SDPzGq2dnrlwvInrxl5l7QBp5tQ1bJFzM3Eu6pgSEAfn4O.#=qK4beZaTpgvIzrfZ_B1OU9g==(PageInfo #=qx0IzZZ5hIPgYJwvsqeMmJQ==, String #=qO7pOkoULyBeTTHQNXHjNEA==, Boolean #=qty0pqk327WYpyCCC7jsDig==, Int32 #=q7FpwGCuiENpLtKRnMAXugKTGx606fGlfC1TgT$SChOI=, MailQuery #=qnwdeZ1$g2Brw5ZhXtjic0Q==, ExchangeListMessagesOptions #=qFbptguuYAuZJP7IsKPutsg==)
   at #=qxFs8SM7UI1LemESKg7SDPzGq2dnrlwvInrxl5l7QBp5tQ1bJFzM3Eu6pgSEAfn4O.ListMessages(String #=qO7pOkoULyBeTTHQNXHjNEA==, Int32 #=q7FpwGCuiENpLtKRnMAXugKTGx606fGlfC1TgT$SChOI=, MailQuery #=qnwdeZ1$g2Brw5ZhXtjic0Q==, Boolean #=qtz0weGGBDIjTEr$JxiRKkQ==)
   at #=qxFs8SM7UI1LemESKg7SDPzGq2dnrlwvInrxl5l7QBp5tQ1bJFzM3Eu6pgSEAfn4O.ListMessages(String #=qO7pOkoULyBeTTHQNXHjNEA==, MailQuery #=qnwdeZ1$g2Brw5ZhXtjic0Q==, Boolean #=qtz0weGGBDIjTEr$JxiRKkQ==)

Need Help for Email tracking

$
0
0
Hi Team,

I wanted to fetch the emails from PST file and also find out turn around time of all emails. I.e. Incoming email time and my reply time.

It should also consider the different timezone.

How to do this using aspose email C#. 

IMAP invalid server response

$
0
0
Hello,

sometimes when I try to invoke the ListMessages method (on IMAP server) I receive this message: Imap server returned an invalid response.
I'm investigating on this but I really can't find a solution... The only thing I've just noticed is that the issue could appear when the mail object is too long, but I'm not sure about this.
I've just bought a license too and I need to solve the issue as soon as possible because of many clients with the software application in production.

Many thanks.

When i goto Save MSG Aspose v16.11 Gives Exception.

$
0
0
System.ArgumentException: The reply to address is not in a recognized format.
   at Aspose.Email.Outlook.MapiMessage.#=qMarLqSKt$Sao6f$5Ww4seQ==(String #=q$osS4I_p7HQiDM0ZIhC0NA==, Boolean #=qPg$IzntEKPMbijP73CgxWvzJFbqaA47_fiIpj_cVYIM=)
   at Aspose.Email.Outlook.MapiMessage.#=q_XAvML02mZWLFrSi21sZDJjz3oNIVMP3fF9OMl7tGgk=(MailMessage #=qFRRTnbgYy1j55fMaBqg6Fg==, MapiMessage #=qiCQ3qnBXDu7pnGLS3Rlb_g==, MapiConversionOptions #=q7RDJ975MHi0QoVEayd54RQ==)
   at Aspose.Email.Outlook.MapiMessage.#=qMTi$pGkbiv14HDhpRJJsQw==(MailMessage #=qG8RQcgnLwPk7aJYoBzvfvw==, MapiConversionOptions #=q7RDJ975MHi0QoVEayd54RQ==)
   at Aspose.Email.Outlook.MapiMessage.FromMailMessage(MailMessage message, MapiConversionOptions options)
   at Aspose.Email.Mail.MailMessage.Save(Stream stream, SaveOptions options)
   at Aspose.Email.Mail.MailMessage.Save(String fileName, SaveOptions options)
   at MSGWriter.MailToMSGConverter.convertMailToMSG_2(CreateParams ObjParams, String& SavedFilePath, Boolean& FileNameChanged, String& OriginalPath)
ERROR2017-01-05 01:03:06 - Stack Strace ::    at Aspose.Email.Outlook.MapiMessage.#=qMarLqSKt$Sao6f$5Ww4seQ==(String #=q$osS4I_p7HQiDM0ZIhC0NA==, Boolean #=qPg$IzntEKPMbijP73CgxWvzJFbqaA47_fiIpj_cVYIM=)
   at Aspose.Email.Outlook.MapiMessage.#=q_XAvML02mZWLFrSi21sZDJjz3oNIVMP3fF9OMl7tGgk=(MailMessage #=qFRRTnbgYy1j55fMaBqg6Fg==, MapiMessage #=qiCQ3qnBXDu7pnGLS3Rlb_g==, MapiConversionOptions #=q7RDJ975MHi0QoVEayd54RQ==)
   at Aspose.Email.Outlook.MapiMessage.#=qMTi$pGkbiv14HDhpRJJsQw==(MailMessage #=qG8RQcgnLwPk7aJYoBzvfvw==, MapiConversionOptions #=q7RDJ975MHi0QoVEayd54RQ==)
   at Aspose.Email.Outlook.MapiMessage.FromMailMessage(MailMessage message, MapiConversionOptions options)
   at Aspose.Email.Mail.MailMessage.Save(Stream stream, SaveOptions options)
   at Aspose.Email.Mail.MailMessage.Save(String fileName, SaveOptions options)

"Input string was not in a correct format" Exception on FetchMessage function

$
0
0
Hi there,

some emails seems to throw the above exception when trying to fetch the message from the exchange server.

Exception thrown on this line of code:

MailMessage msg = _EWSClient.FetchMessage(messageInfo.UniqueUri);

Stack Trace of the Exception:

Exception#1 Stack Trace:    at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at #=qEpCtkbM23Yqc3BqGkIx$y_r6dhvD3a1N6jzJvcZygH2$u_EezBSDs6JPSoGg5W9l.#=q_pnhGxN_5Bu53CBP9XGdlNZdAw4RbXtQW35QsmSI$Js=.#=qMcv2YKgTP7vB35S2xs373Q==(String #=q039XfHCYmkNtYcFCB5txnQ==, #=qHGvmbcelsezJt7WBgsATCNA_xrK7owxa_6XIUy0PgnM6Dedfl9JMMtNAZ$Oalouf #=q0XGEH$Kv6HajfWqv6WiT_w==, String #=qEIWFzs4BzacQ_VS2jKjDPg==)
   at #=qEpCtkbM23Yqc3BqGkIx$y_r6dhvD3a1N6jzJvcZygH2$u_EezBSDs6JPSoGg5W9l.#=qMcv2YKgTP7vB35S2xs373Q==(String #=q039XfHCYmkNtYcFCB5txnQ==, #=qHGvmbcelsezJt7WBgsATCNA_xrK7owxa_6XIUy0PgnM6Dedfl9JMMtNAZ$Oalouf #=q0XGEH$Kv6HajfWqv6WiT_w==, String #=qM71OOjG4nY8Rq3Kgwje28Q==)
   at #=qhtcjAHBZRwXEmiHN2z51$xcEZFvXUpSYQNQuBdUsiptcOXjvPRZ9U4c$xBrUIRUw$C47rjtPC3P6wWnADxeMOA==.#=quZbID1WDLKwopvzEoKEvaA==(List`1 #=qHaPPrlXUs_rBT4WkWOLO_A==)
   at #=qIzGhba6CDCfL0z8bt6W3gnyVAsa2zrQjd2vw$IXq$wvvVlEG15zlkxtMZq3IL9Mr.#=qhyE_lEAcMoTlg8ckrwmIeWSKo1DvM4Mv6K3noJQr3Q8=(Stream #=q3PAx_$YgrsVFaOPcV4gdtQ==, Boolean #=qPDgSw5Z7xY1ZebZ6KeITAQ==)
   at #=qIzGhba6CDCfL0z8bt6W3gnyVAsa2zrQjd2vw$IXq$wvvVlEG15zlkxtMZq3IL9Mr.#=qUIz2hGBqow30t9LR99MI7fEt_zr8GB20gpp6EqvDevs=(Stream #=q3PAx_$YgrsVFaOPcV4gdtQ==)
   at Aspose.Email.Mail.MailMessage.#=qtm$_rK8NWFWumuiZA85y5_$71BDa_oTVkfY1YeFu0cQ=(#=qjIRwJ_QvyUI0zuoQTnNCXwf285lQ0wbtzvwy1H1JUBs= #=qojRQTtTy2G3Qa2MVcRCxKA==, Boolean #=qenRovtwMLd$PJa3H9zB8YQ==, AlternateView #=qLbTEgBMbnNFxPaWbSM0pHw==)
   at Aspose.Email.Mail.MailMessage.#=q06QknkkNJKNgfl_jQqTyKvKe5IVOXTGRQrYN9W0CnaI=(#=qV_Wo4ibknVTtpU4q7UCZAkLy9qHrc5GSi1Jh0zRSQik= #=qevGgceu4Da5URM1OtMOKCw==)
   at Aspose.Email.Mail.MailMessage.#=qq8se1fiork3RsVzRn54bfCFUxUxpUYb1OfIQrCxbvHs=(#=qV_Wo4ibknVTtpU4q7UCZAkLy9qHrc5GSi1Jh0zRSQik= #=qUZnJ4ifUo6ZDUYHFzsQWGQ==)
   at Aspose.Email.Mail.MailMessage.#=qly30FODu3vrqY9xEs$yEdg==(#=qlzpgHlUOlsl_sj$kfuS2_w6EkjQiYA3KloTmTIf01lw= #=qkFIb0BLtEuuVle$zkmos9Q==)
   at Aspose.Email.Mail.MailMessage.#=qH3sgvFXcO5OxptmmWal8I7MbPX6Pg5hpgPvugd9tpJo=(#=qlzpgHlUOlsl_sj$kfuS2_w6EkjQiYA3KloTmTIf01lw= #=qkFIb0BLtEuuVle$zkmos9Q==)
   at Aspose.Email.Mail.MailMessage.#=qjwZJDfsTLAiVTZD88krVzfnwypsHyzAI6nlSXTvVbBQ=(#=qlzpgHlUOlsl_sj$kfuS2_w6EkjQiYA3KloTmTIf01lw= #=qkFIb0BLtEuuVle$zkmos9Q==, Boolean #=qis2UHOK7_a8yLiTid8n4jg==)
   at Aspose.Email.Mail.MailMessage..ctor(#=qlzpgHlUOlsl_sj$kfuS2_w6EkjQiYA3KloTmTIf01lw= #=qkFIb0BLtEuuVle$zkmos9Q==, Boolean #=q0QBeFRTV8dKwfDwH1S44kg==, Boolean #=qis2UHOK7_a8yLiTid8n4jg==)
   at Aspose.Email.Mail.MailMessage.#=qhA3m3LFS2b8jhUe$cn6QPQ==(Stream #=q3PAx_$YgrsVFaOPcV4gdtQ==, EmlLoadOptions #=qbWW4F8ySKqXZu2qK7mLwOg==)
   at Aspose.Email.Mail.MailMessage.#=q7rlm7rIngyYYgi54VDuZ895K6KGbv9FVhA5N8l$cQ_I=(Stream #=q3PAx_$YgrsVFaOPcV4gdtQ==, LoadOptions #=qbWW4F8ySKqXZu2qK7mLwOg==)
   at Aspose.Email.Mail.MailMessage.Load(Stream stream)
   at #=qYjigJMF5nSxCd6m9SLjRj1ebiGyF7hDTWCXSsVhDF4o_7gpxGnmwfrKbdGV5eBhz.#=qzTa74LkrpCqbGSia0MiBdVRhvsPn1XxhyLr3TYg6FF8=(ItemType #=qC2PRltAHS93BDuwplNVBIQ==)
   at #=qYjigJMF5nSxCd6m9SLjRj1ebiGyF7hDTWCXSsVhDF4o_7gpxGnmwfrKbdGV5eBhz.FetchMessage(String #=qyXVlmFqEFbkF1lm2juKMPw==)
   at SM8ListenerService.SM8ListenerSvc.ProcessEMailsInInbox() in C:\Redcastle\2015\WindowsApps\SM8ListenerService\SM8ListenerService\SM8ListenerSvc.cs:line 153

Most of the stack trace seems to be gobble-dee-gook but maybe it means something to you

Cheers james

Possibility to save EML as read only

$
0
0
Hi

The API saves a new EML in draft format. Is there any option to save it as read-only or saved form?

Messages are not deleting from server

$
0
0
I am trying to delete messages from Gmail server. The application executes successfully but the emails are not deleted from the inbox.

ImapClient client = new ImapClient("imap.gmail.com", port, login, password);
client.SelectFolder(ImapFolderInfo.Inbox);
client.DeleteMessage(1);

Please help.

memory issue while extract messages from large pst file

$
0
0
Hi

Our tool extract each message from pst file, save it, then remove some messages and add some new messages into this pst file.
For some large pst file, the tool run out of memory quickly. 
From dump file, it is running Aspose.Email.Outlook.Pst.PersonalStorage.ExtractMessage.
We used perfview to analysis the dump file, it shows there are 11K instances of Aspose.Email!Aspose.Email.Outlook.MapiMessageReader with more than 16G memory usage (14G are MemoryStream)
What does MapiMessageReader use for? is there possible memory leak? 

The version is 16.11.0.0

Thanks
Li




































Viewing all 1367 articles
Browse latest View live