Tutorial by Examples

Filename myEmail EMAIL Subject = "My Email Subject" From = "[email protected]" To = '[email protected]' CC = '[email protected]' Type = 'Text/Plain'; Data _null_; File myEmail; PUT "Email content"; PUT &q...
Filename myEmail EMAIL Subject = "My Email Subject" From = "[email protected]" To = '[email protected]' CC = '[email protected]' Type = 'Text/Plain' ATTACH = ("my/excel/file/path/file.extension" content_type="...
Take note of the email type: Type = 'text/html'; Filename myEmail EMAIL Subject = "My Email Subject" From = "[email protected]" To = '[email protected]' CC = '[email protected]' Type = 'text/html'; Data _null_; File my...

Page 1 of 1