Product Logo

POP3it Pro

Email downloading made easy.

Functions
FunctionPOP3it_Adv_AddAccount
FunctionPOP3it_Adv_Connect
FunctionPOP3it_Adv_ConnectFile
FunctionPOP3it_Adv_Delete
FunctionPOP3it_Adv_DeleteAll
FunctionPOP3it_Adv_Disconnect
FunctionPOP3it_Adv_GetAccountOption
FunctionPOP3it_Adv_GetAttachment
FunctionPOP3it_Adv_GetAttachmentCount
FunctionPOP3it_Adv_GetAttachmentFileName
FunctionPOP3it_Adv_GetBody
FunctionPOP3it_Adv_GetDate
FunctionPOP3it_Adv_GetFullSource
FunctionPOP3it_Adv_GetHeader
FunctionPOP3it_Adv_GetMessageCount
FunctionPOP3it_Adv_GetSize
FunctionPOP3it_Adv_GetUniqueID
FunctionPOP3it_Adv_GoToMessage
FunctionPOP3it_Adv_HasBodyType
FunctionPOP3it_Adv_IsConnected
FunctionPOP3it_Adv_RemoveAccount
FunctionPOP3it_Adv_SaveAttachment
FunctionPOP3it_Adv_SetAccountOption
FunctionPOP3it_Adv_UndeleteAll
FunctionPOP3it_CheckAccount
FunctionPOP3it_CheckFile
FunctionPOP3it_Configure
FunctionPOP3it_ConfigureAccount
FunctionPOP3it_DisplayMessage
FunctionPOP3it_File_Copy
FunctionPOP3it_File_Delete
FunctionPOP3it_File_Exists
FunctionPOP3it_File_Export
FunctionPOP3it_File_Import
FunctionPOP3it_File_Move
FunctionPOP3it_File_Read
FunctionPOP3it_File_Rename
FunctionPOP3it_File_SelectWithDialog
FunctionPOP3it_File_Size
FunctionPOP3it_File_Timestamp
FunctionPOP3it_File_Write
FunctionPOP3it_Folder_Create
FunctionPOP3it_Folder_Delete
FunctionPOP3it_Folder_Exists
FunctionPOP3it_Folder_GetPath
FunctionPOP3it_Folder_List
FunctionPOP3it_Folder_Rename
FunctionPOP3it_Folder_SelectWithDialog
FunctionPOP3it_GetAccountNames
FunctionPOP3it_QuoteMessage
FunctionPOP3it_Register
FunctionPOP3it_StatusWindow
FunctionPOP3it_Version
FunctionPOP3it_VersionNumber

POP3it_Adv_SaveAttachment

NamePOP3it_Adv_SaveAttachment
Description

This function extracts one or all Attachments out of the current email and saves it/them to the hard drive in the Account’s Attachment Path. If you do not specify the Number or if you specify 0, all Attachments in the current email will be saved out, otherwise, the specific Attachment you specify will be saved out. If you are only saving out one Attachment, you can optionally specify the File Name for that Attachment with the second parameter. If the GetRefInline parameter is set to True, this function extracts any Inline Images Referenced by the HTML in the email.

Return TypeText
FormatPOP3it_Adv_SaveAttachment ( Number ; FileName ; GetRefInline )
Optional Parameters
Number

Which Attachment to save to the hard drive. (If not specified, All Attachments will be Saved to the Hard Drive.)

FileName

An alternate File Name for the Attachment. (Default is the FileName of the Attachment as specified in the Current Message.)

GetRefInline

If True, this function will Save out any Inline Images Referenced by the HTML. (Default is False.)

Examples
Example 1

Saves out all Attachments from the current email.

POP3it_Adv_SaveAttachment
Example 2

If there are at least two Attachments in the current email, this would save out the second one.

POP3it_Adv_SaveAttachment( 2 )
Example 3

Saves out the first Attachment with the custom name, "Import.csv".

POP3it_Adv_SaveAttachment( 1 ; "Import.csv" )
Example 4

If there are any Referenced Inline Images, this would save them all out.

POP3it_Adv_SaveAttachment( 0 ; "" ; True )