⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Template printing
  • Nested templates
  • Email sending
  • Attaching files to emails
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • Attaching files to emails

    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]`