~Lily KihipisonetsiAug 3, 2011, 7:40 AM261 PostsRe: Mail SendingYou need to use the "send" method of the NotesDocument class. Simple sample in SSJS: var doc = database.createDocument();doc.replaceItemValue("Form", "Memo"); doc.replaceItemValue("Subject", "hello world");doc.send("someone@somewhere.com"); Mark
~Mark BubnizenAug 3, 2011, 7:46 AM170 PostsRe: Mail Sending Sure, create a new notesdocument behind a button var doc:NotesDocument=database.createDocument()doc.replaceItemValue("Subject","Hello")doc.replaceItemValue("Body","My Body")doc.replaceItemValue("sendTo","person@test.com")doc.send()
~Holly RenuvitchaderAug 3, 2011, 4:27 PM6 PostsRe: Mail SendingThanks Mark and Fredrik for ur response.. :)