Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.1
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
Statistic
FMM
Blog
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