⟵ 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
  • Email sending

    How to send an email from the action code?

    Function emailSend.

    Where should the email template be so that we can use it when we send it?

    The template should be formatted in html.

    The template can be located anywhere, but we recommend placing them in the same location as the print templates, in the table System Tables —> Main —> Templates —> Print Templates.

    You can use an email generator, such as stripo.email, and after assembling the email in it, download the html.

    Next, in the body of the function emailSend, the html with the replacements already made is passed.

    For this, the function textByTemplate is used:


    =:
    textByTemplate(template: "template_name"; data: $data) data: rowCreate("0":)

    You can save the template not only in Print Templates — in that case, you need to use the text parameter instead of template:

    ```totum

    =: textByTemplate(text: $html; data: $data)

    data: rowCreate(field: "replace" = "replacements")

    ```html:html Here is the text and markers for {replace}

    ```

    What happens if we don't specify from whom the letter is sent?

    It will be sent from the email specified in Conf.php in the root installation folder.

    How to specify multiple recipients?

    Pass a list to the to parameter. Then the email will be sent to multiple recipients in open! copy.

    What condition must be satisfied to prevent the receiving server from sending the email to spam?

    For your domain, a txt spf-record should be set: "v=spf1 ip4:YOU_SERVER_IP ~all"