cancel
Showing results for 
Search instead for 
Did you mean: 

Possible to send mail

webraccoon
Champ in-the-making
Champ in-the-making
Hi everybody,

is it possible to send email from within javascript?
I tried it successful within a workflow, but in this case i don't need this workflow.

Does anybody have an idea?

thx,
webraccoon
1 REPLY 1

zladuric
Champ on-the-rise
Champ on-the-rise
It should be.
var mail = actions.create("mail");
mail.parameters.from = person.properties.email;
mail.parameters.to = "somebody@somewhere.com";
mail.parameters.subject = "Subject";
mail.parameters.text = textStringOrYouCanUseFTL;
mail.execute(document);