كيف يمكن إرسال مرفقات المستند عبر الإيميل عند الحاجة؟

Viewed 2

عند عمل تنبيه يتم إرساله عن طريق إيميل لإنشاء مستند معين، كيف يمكن إرسال المرفقات الموجودة في هذا المستند مع الإيميل؟


Originally posted at https://answers.namasoft.com/question/1049/ on 2020-09-14.

1 Answers

To add an attachment to the email, use a formula like the following:

{emailattachment(attachmentField)}
{emailattachment("attachmentPathOnTheServer")}

Example: To send attachments of an employee:

subject:Attachments of employee {code} - {name1}
Dear Sir, Please note that the employee {name1} was changed. The email contains all files attached to the employee
{emailattachment(attachment)}{emailattachment(attachment1)}{emailattachment(attachment2)}{emailattachment(attachment3)}{emailattachment(attachment4)}{emailattachment(attachment5)}{emailattachment(mainFile)}

Originally posted at https://answers.namasoft.com/question/1049/ on 2020-09-14.