Sending mail in lotusscript

How to append programmable button to mail body(rich text field) through lotus script coding…

Thanks in advance

Subject: RE: Sending mail in lotusscript

It’s easiest to create the button manually and store it somewhere – say in a profile document – so that you can add it into the message body using AppendRTItem.

Subject: RE: Sending mail in lotusscript

Hi Andre,

Ya,  thanks, i tried this already, its solved the problem.

Is there any straight forward way to code.

with regards,

Yogi

Subject: RE: Sending mail in lotusscript

Not really. You can create the button using DXL, but I don’t know a way to sign it unless it’s part of a design element. Maybe you could do it that way. Use DXL to update a design element, sign it, and then copy the signed button off the design element. You could do it in a local temp database if there’s no database you know you’re a designer in. But it still ends up being signed with the ID of the current user then, and you probably want it signed with an ID that’s in the users’ ECLs.

You could create a parameterized button that’s signed with an authorized ID and that reads field values off the document or from a hidden part of the rich text field. Then the button could be signed, and could do different things depending what data accompanies it (to allow for forwarding the data could be part of the rich text). Be very careful with this, though, so that you don’t create a button that could be abused by people who send it along with their own data in an email.

Subject: RE: Sending mail in lotusscript

Ya, Ok, Thank You…