Sending information through email

hi all,

I want to send an email that contains a coverletter and resume.Here is the description:

For my website, I have a Resume submission aplication form with a " rich text field "(to type coverletters), a “file upload control” (to upload resumes) and a “submit button”.

When user clicks on submit, the rich text field and the document in the file upload control should reach a destination email address.

Is ther any document or resource on the web that shows how to do this?

Any responces greatly appreciated.

Jay

Subject: sending information through email

Just a little bit of LS will do the trick. Create a LS Agent and trigger it in the Form’s WebQuerySave

Sub Initialize

Dim nsession As New NotesSession

Dim doc As NotesDocument

Set doc=nsession.DocumentContext

doc.Form = “Memo”

doc.SendTo = “Person to receive the document”

doc.Subject = “My Resume”

Call doc.Send( False )

end sub