Is there a script that will change a user entered email address to a clickable hyperlink?
Thanks
Hi,
Something along these lines should work (click event of textfield):
if (this.rawValue !== null) {
var vEmail = this.rawValue;
var vSubject = "A Subject for your email";
var vBody = "Put your body message here...";
event.target.app.mailMsg({
bUI: true,
cTo: vEmail,
cSubject: vSubject,
cMsg: vBody
});
}
That should get you along the right lines,
Niall
North America
Europe, Middle East and Africa
Asia Pacific