Sending Mail from Web

Dear All

I am using a lotus Form running on Internet Explorer having user registration details.

Please tell me the code which can be used to send mail of email-ID provided by user on registration form regarding successful registration.

Will appreciate if its possible with Lotus Formula. I tried @MailSend but its not working on web.

Thanks

Subject: Sending Mail from Web

Adnan,

Use @MailSend in an formula agent and thereafter trigger it using document.forms[0].submit();

For e.g. if you have a field named ‘person’ that identifies the user, to whom you need to send a mail. You can achieve the same by having the following two lines of code in your @Formula agent.

person:=@GetField(“Person”);

@MailSend(person;“”;“”;“registration mail”;“”;“you have been successfully registered!”);

HTH,

Jason