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:
9.5
10.0
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
Statistic
FMM
Blog
Adds an attachment to the email based on a file path.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
SendMail | 4.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example | Flags |
---|---|---|---|
EmailID | The email reference number obtained using SendMail.CreateEmail function. | $EmailID | |
Path | The native file path to the file to include as attachment. | "/Users/cs/Desktop/sample.pdf" | |
Name | The name for the attachment. If empty, version 6.2 or newer uses file name from file path. |
"sample.pdf" | Optional |
MimeType | The mime type to use. e.g. "application/pdf" for PDF files. If missing, we use "application/octet-stream". Version 6.2 or newer detects mime type from file extension if needed. |
"application/octet-stream" | Optional |
InlineID | The content ID for inline images (CID). Empty text or no parameter gives regular attachment. |
"test.png@3C111B0E.81ED.478A.912C.4B64F538003C" | Optional |
Method | The method for the content-type parameter. Currently only for sending calendar invitiations. |
"REQUEST" | Optional |
Returns OK or error.
Add attachment:
Set Variable [$r; Value:MBS("SendMail.AddAttachmentFile"; $EmailID; Attachment::Path; Attachment::Name; Attachment::Type)]
Recursive custom function to add a list of files:
MBSAttachment(EmailID, FilePathList, Flag_inline)
// e.g. $r=MBSattachment ( $EmailID ; MyTable::FilePathList; 1 ) ;
Case(
ValueCount (FilePathList ) > 0;
Let(
[
§element =
ValueCount (FilePathList ) ;
§Line =
GetValue( FilePathList; §element );
§InlineID=
MBS( "Path.LastPathComponent"; §line ) ;
§r=
MBS(
"SendMail.AddAttachmentFile";
EmailID;
§Line;
""; /* file name from path automatically */
""; /* mime name from file name automatically */
Case(
Flag_inline = 1;
§InlineID ;
""
)
)
];
// call recursive for next file:
MBSattachment(
EmailID;
Trim(
Substitute(
"¶" & FilePathList;
"¶" & §Line ;
""
));
Flag_inline
)
);
""
)
Created 3th September 2014, last changed 30th March 2021
SendMail.AddAttachmentContainer - SendMail.AddAttachmentText
Feedback: Report problem or ask question.