Skip to content

Commit af7af6f

Browse files
authored
Review
1 parent f95d549 commit af7af6f

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

content/en/docs/appstore/use-content/platform-supported-content/modules/email-connector.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ Configuring local clients, such as [Papercut](https://github.com/ChangemakerStud
353353
### Adding Attachments
354354

355355
#### Normal Attachment
356+
356357
To add attachments to the email message, do the following:
357358

358359
1. Create an **Attachment** entity. The **Attachment** entity extends the **FileDocument** entity by making it usable in all the places where the **FileDocument** entity is required.
@@ -362,11 +363,18 @@ To add attachments to the email message, do the following:
362363
2. Set the **Attachment_EmailMessage** association.
363364

364365
#### In-line Attachment
365-
To add in-line attachments to the email message, you can either use the Rich text editor to insert image(s) in the email body. You can also insert in-line attachments non-interactively using a microflow. The steps are to first create an EmailMessage with *Content* property set as below..
366+
367+
To add in-line attachments to the email message, you can either use the Rich text editor to insert an image (or images) in the email body. You can also insert in-line attachments non-interactively using a microflow. To do this, follow these steps:
368+
369+
1. Create an EmailMessage with the *Content* property set as seen below:
370+
366371
```
367372
'before inline image<br><img src="cid:mxcid:test.png" width="530" height="110"><br>after inline image'
368373
```
369-
The img tag's source should be specified using **cid:mxcid** prefix before the source file to have this image added as inline image. Then create Attahcment with the Position attribute set to *ENUM_AttachmentPosition.Inline*. Associate the Attachment with EmailMessage and you should be able to send this email using *SUB_SendEmail* Microflow.
374+
375+
2. Specify the image's tag source using the **cid:mxcid** prefix before the source file to have the image added as inline image.
376+
3. Create the attachment with the Position attribute set to **ENUM_AttachmentPosition.Inline**.
377+
4. Associate the attachment with EmailMessage. You should then be able to send this email using the **SUB_SendEmail** microflow.
370378

371379
### Page Styling
372380

0 commit comments

Comments
 (0)