How to attach a file to an email?
In the files
parameter, you need to pass a list
or row
so that the email contains attached files.
list
— of technical file names contained in the file field in the file
key.
=: #type_file[[file]]
row
— of the form technical name from file
: name displayed in the email
.
=: emailSend(to: "test@example.ru"; title: "Sending email"; body: "Test email"; files: $files)
files: rowCreate(field: "Attached image 1.png" = "444_field_name.png"; field: "Attached image 2.png" = "445_field_name.png")
or
=: emailSend(to: "test@example.ru"; title: "Sending email"; body: "Test email"; files: $files)
files: rowCreate(field: "Attached image 1.png" = #field_name[0][file]; field: "Attached image 2.png" = #field_name[1][file])
In what case is it possible not to specify file attachments explicitly, and they will be added automatically?
If the body of the letter in body
contains images with src = "path to the file in the current totum scheme"
— these files will be automatically attached to the letter.
How to get the path to the file knowing that the file is in a specific field in Totum:
=: str`"https://" + $#nh + "/fls/" + #file_fiels[0][file]`