Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Queries an inline graphics property.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
EmailParser | 5.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example | Flags |
---|---|---|---|
EmailID | The ID fo the email parser. | ||
Index | The index from 0 to EmailParser.InlineCount-1. | 0 | |
Selector | Which value to return. Can be Filename, MimeType, MimeVersion, ContentType, ContentTransferEncoding, ContentDisposition, ContentDescription, contentId, text or container. | "Filename" | |
Extra | For selector = container, you can pass an alternative file name. For selector = text, you can pass text encoding here. |
Optional |
Returns value or error.
Copy all inline graphics into records:
#find all inline graphics
Set Variable [$i; Value:0]
Set Variable [$c; Value:MBS("EmailParser.InlineCount"; $email)]
If [$c > 0]
Go to Related Record [Show only related records; From table: “InlineGraphics”; Using layout: “InlineGraphics” (InlineGraphics)]
Go to Layout [“InlineGraphics” (InlineGraphics)]
Delete All Records [No dialog]
Loop
Set Variable [$Name; Value:MBS("EmailParser.inline"; $email; $i; "filename")]
Set Variable [$content; Value:MBS("EmailParser.Inline"; $email; $i; "container")]
New Record/Request
Set Field [InlineGraphics::Content; $content]
Set Field [InlineGraphics::FileName; $name]
Set Field [InlineGraphics::EmailID; $EmailRecordID]
Commit Records/Requests [Skip data entry validation; No dialog]
#next
Set Variable [$i; Value:$i + 1]
Exit Loop If [$i = $c]
End Loop
End If
This function is free to use.
Created 24th September 2015, last changed 14th July 2019