Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Download and Save Email Attachments (POP3)See more POP3 ExamplesDownloads emails from a POP3 mailbox and saves all attachments.
integer li_rc oleobject loo_Mailman oleobject loo_Bundle string ls_DirPath integer li_Success integer li_BundleIndex integer li_NumMessages oleobject loo_Email integer li_NumAttachments integer li_AttachIndex // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // The mailman object is used for receiving (POP3) // and sending (SMTP) email. loo_Mailman = create oleobject // Use "Chilkat_9_5_0.MailMan" for versions of Chilkat < 10.0.0 li_rc = loo_Mailman.ConnectToNewObject("Chilkat.MailMan") if li_rc < 0 then destroy loo_Mailman MessageBox("Error","Connecting to COM object failed") return end if // Set the POP3 server's hostname loo_Mailman.MailHost = "pop.yourserver.com" // Set the POP3 login/password. loo_Mailman.PopUsername = "***" loo_Mailman.PopPassword = "***" // Copy the all email from the user's POP3 mailbox // into a bundle object. The email remains on the server. // CopyMail is a reasonable choice for POP3 maildrops that don't have too many // emails. For larger mail drops, one might download emails one at a time.. loo_Bundle = loo_Mailman.CopyMail() if loo_Mailman.LastMethodSuccess <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Mailman return end if // The directory path can be relative or absolute. // This shows a Windows style directory path. On other operating systems, the path // would be different.. ls_DirPath = "c:/myAttachments" li_BundleIndex = 0 li_NumMessages = loo_Bundle.MessageCount do while (li_BundleIndex < li_NumMessages) loo_Email = loo_Bundle.GetEmail(li_BundleIndex) // Save all attachments to the specified directory. // The directory is automatically created if it does not yet exist. li_Success = loo_Email.SaveAllAttachments(ls_DirPath) if li_Success <> 1 then Write-Debug loo_Email.LastErrorText destroy loo_Mailman return end if // The OverwriteExisting property controls whether already-existing files // are automatically overwritten. By default, it is set to 1 so that existing // files will be overwritten. // Setting OverwriteExisting = 0 will cause the attachment-saving methods to generate // unique filenames if a file with the same name already exists. The actual filename(s) // saved will be present by calling GetAttachmentFilename for each attachment *after* // saving. // For example... loo_Email.OverwriteExisting = 0 li_Success = loo_Email.SaveAllAttachments(ls_DirPath) if li_Success <> 1 then Write-Debug loo_Email.LastErrorText destroy loo_Mailman return end if li_NumAttachments = loo_Email.NumAttachments li_AttachIndex = 0 do while (li_AttachIndex < li_NumAttachments) // If the attachment filename was changed to prevent overwriting, // GetAttachmentFilename will return the new filename. Write-Debug loo_Email.GetAttachmentFilename(li_AttachIndex) li_AttachIndex = li_AttachIndex + 1 loop // Attachments can also be saved individually. li_AttachIndex = 0 do while (li_AttachIndex < li_NumAttachments) Write-Debug "Original Filename: " + loo_Email.GetAttachmentFilename(li_AttachIndex) li_Success = loo_Email.SaveAttachedFile(li_AttachIndex,ls_DirPath) if li_Success <> 1 then Write-Debug loo_Email.LastErrorText destroy loo_Mailman return end if // If OverwriteExisting = 1, the saved filename will always equal the original filename, // unless there are characters present in the filename that are not allowed by Windows, // such as * ? < > | etc. In those cases the illegal characters are either removed or replaced // with underscore characters to allow the file to be saved. Write-Debug "Saved Filename: " + loo_Email.GetAttachmentFilename(li_AttachIndex) li_AttachIndex = li_AttachIndex + 1 loop destroy loo_Email li_BundleIndex = li_BundleIndex + 1 loop destroy loo_Bundle destroy loo_Mailman |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.