Try using "Template" action and construct your text with hyerlinks than paste it to page.
Other option is to create simple LOCAL html page somewhere on your hard disk with
desired text and links, than open that local html page in another tab in BAS and than copy
from that tab to the tab where you are working.
Найдите переменную в html
-
@mrb3k
Как сказали выше - Xpath или регулярки. Самый простой способ - Xpath.Пример. Есть переменная [[MAIL_BODY]] с текстом:
<div style="font-family:Open Sans, Helvetica, Tahoma, Arial, sans-serif;font-size:14px;line-height:20px;text-align:left;color:#4F4F4F;"><div class="wrap" style="color: #333;"><div class="title" style="margin-bottom: 24px; line-height: 30px; font-size: 30px; font-weight: 700;">Используйте этот код для входа</div><div class="dear" style="margin-bottom: 12px;">Здравствуйте!</div><div class="content" style="margin-bottom: 12px;">Используйте этот код для подтверждения почты:</div><div class="code" style="margin-bottom: 12px; font-size: 20px; font-weight: 700; color: #FF4747;">6402</div><div class="tips">Вы сможете изменить пароль, почту и телефон в настройках профиля.</div><div class="tips" style="margin-bottom: 12px;">Если вы не запрашивали код подтверждения, проигнорируйте это письмо. Чтобы защитить аккаунт, измените пароль.</div><div class="kind">Хороших покупок,</div><div class="AliExpress"> AliExpress </div></div></div>Чтобы получить из нее код ("6402"), используем действие "Xpath получить текст" и вводим корректный запрос Xpath (в данном случае //div[@class="code"]. Всё.

В редких случаях еще с помощью методов js можно ответ подправить.
Если бы полный текст HTML показал, написал бы Xpath по нему.
для меня html-код выглядит так