История страницы
...
Send message Version 3 (Java)
Группа действийAction group: Почта Mail
Описание
Действие создает сообщение и отправляет его по указанному адресу.
...
Description
The action creates a message and sends it to the specified email.
Action icon
...
Parameters
Входные параметры
Контекст - Идентификатор сеанса работы с почтовым сервером.
От - Адрес почты отправителя сообщения.
Кому - Список адресов получателей письма. В качестве разделителя используйте «;»
Копия - Список адресов получателей копии письма. В качестве разделителя используйте «;»
Тема - Тема письма.
Тело письма - Тело письма
Вложения - Путь к файлу, который необходимо прикрепить. Если необходимо прикрепить несколько вложений, пути к файлам указываются через «;»
...
Input parameters
Context - email connection context identifier.
From - sender mail address.
To - list of addresses of the recipients of the letter. Use «;» as a separator.
CC - list of addresses of recipients of a copy of the letter. Use «;» as a separator.
Subject - subject of mail.
Message body - message body.
Attachments - the path to the file to be attached. If you need to attach several attachments, paths to files are indicated with «;».
Settings
Property | Description | Type | Filling example | Mandatory field |
---|---|---|---|---|
Parameters | ||||
Context | Email connection context identifier | Robin.JavaMail | Yes | |
From | Sender mail address | Robin.String | Yes | |
To | List of addresses of the recipients of the letter. Use «;» as a separator | Robin.String | Yes | |
CC | List of addresses of recipients of a copy of the letter. Use «;» as a separator | Robin.String | No | |
Subject | Subject | Robin.String | No | |
Message body | Message body | Robin.String | No | |
Attachments | The path to the file to be attached. If you need to attach several attachments, paths to files are indicated with «;» | Robin.FilePath | No |
Особые условия использования
Отсутствуют
Пример использования
Задача
Special conditions of use
None.
Example of use
Task
Send a message with "Test message" as subject, "Hello world" as message body to the following address: Оправить сообщение, с темой письма "Test message" с телом письма “Hello world”. На почту testsforrobin@mail.ru.
К письму прикрепить вложение в виде docx файла.
Решение
Подключить почтовый ящик с которого будет выслано письмо. Для любых действий с конкретным почтовым ящиком, необходимо сперва подключиться к нему, создать его уникальный идентификатор (Контекст).
Определить почтовый сервис. (От почтового сервиса зависят параметры подключения к почтовому ящику).
Отправить сообщение.
Реализация
Attach a docx-file to the message.
Solution
Connect the email from which the message will be sent. For any actions with a particular mailbox, you must first connect to it, create its unique identifier (Context).
Define the mail service. (Connection parameters to the mailbox depend on the mail service).
Send the message.
Implementation
- Assemble a robot scheme with the actions:
- Set the "Open email" action parameters. (read the action description at Собрать схему робота, состоящую из действий:
Настроить параметры для действия "Open email". (см. описание действия Настройки подключения / Connection settings). - Настроить параметры для действия Set the "Send message" action parameters.
Настройка действияSetting the action:- Параметр "КонтекстContext" . Необходимо выбрать из выпадающего списка контекст соответствующий почтовому ящику с которого будет отправлено сообщение.
- Параметр "От". Указываем почтовый ящик с которого мы отправляем сообщение.
- Параметр "Кому". Указываем почтовый ящик которому мы отправляем сообщение.
- Параметр "Тема". Указываем тему письма.
- Параметр "Тело письма". Указываем переменную с персональными данными сотрудника. (ФИО, Телефон).
- Параметр "Вложения". Указываем путь до файла.
- Нажать на кнопку "Старт" в верхней панели.
Результат
- parameter. It is necessary to select from the drop-down list the context corresponding to the mailbox from which the message will be sent.
- "From" parameter. Specify the mailbox from which the message will be sent.
- "To" parameter. Specify the mailbox to which the message will be sent.
- "Subject" parameter. Specify the subject pf the message.
- "Message body" parameter. Specify the variable with employees personal data (Full name, phone number).
- "Attachments" parameter. Specify the path to the file.
- Click "Start" in the top panel.
Result
The message with the necessary document was sentСообщение с необходимым документом было отправлено.