26.11.2017, 00:45
Hi,
Just use the build in mail function and trigger it as event based script:
BR,
Erwin
Just use the build in mail function and trigger it as event based script:
Code:
-- make sure mail settings are set in common functions library before using this function
subject = 'E-mail test'
message = 'Testing e-mail'
mail('user@example.com', subject, message)
Erwin