new(basic.gblib): SEND MAIL keyword.
This commit is contained in:
parent
21fb823ed5
commit
6786936ad4
1 changed files with 4 additions and 0 deletions
|
|
@ -434,6 +434,10 @@ export class GBVMService extends GBService {
|
|||
return `sys().sendSmsTo (${$3})\n`;
|
||||
});
|
||||
|
||||
code = code.replace(/(send mail)(\s*)(.*)/gi, ($0, $1, $2, $3) => {
|
||||
return `sys().sendEmail (${$3})\n`;
|
||||
});
|
||||
|
||||
code = code.replace(/(send file to)(\s*)(.*)/gi, ($0, $1, $2, $3) => {
|
||||
return `sendFileTo (step, ${$3})\n`;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue