Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Emailing Form

Status
Not open for further replies.

thabrane

Programmer
Aug 20, 2003
94
US
Hello,
I would like to e-mail a form within a notes web page to an email address. This form is designed in html. I don't want to make a copy in any databases, I would just like to copy the contents of the form into an email document.

Any one have any idea how to accomplish this task?
thank you for any help.
 
I do not think you can mail Notes design elements.
However, if the only data the form design contains is HTML, then why not copy the code to a mail ?

Pascal.
 
Have a look in the help files for the notesDocument.send method in LotusScript - this contains a parameter allowing you to state whether or not to include the form in the email, which I believe is what you want.

This is from the Lotus Domino help (it looks a bit messy in monospace, but you get the idea):

Call notesDocument.Send( attachForm [, recipients ] )
Parameters
attachForm
Boolean. If True, the form is stored and sent along with the document. If False, it isn't.
recipients
String or array of strings. Optional. The recipients of the document. See below.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top