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"