To send mail

Hi all can anyone help me i want to send mail.So for this i had written a code the code is working fine.For this i create a button.in this button i have written this code .I want when the user click on the submit button the mail should go but the form must paste in the body field of his mailbox(means when user open his mail he will see the form paste directly in his body field )

@PostedCommand([FileSave]);

@MailSend(@DbColumn(“”:“”;“”:“”;“Profile”;13);fd_raisedby;“”;“KM Certificate for”+fd_raisedby;“”;@NewLine+@NewLine+“Click on the following link to see the Certificate for”+“,”+sInitiator+“,”;[IncludeDoclink]);

Subject: To send mail

…or you can simply “Forward the document” to your recipient “as is” with this simple command:

@Command([MailForward])

Put this behind your action button and the form will go as is into the body of a new memo.

Subject: To send mail

try using lotus script…dim doc =new NotesDocument(db)

doc.Form=“Form-Name”

doc.CopyTo=“”

doc.Subject=“”

it will solve ur prblm…