Project

General

Profile

Actions

Feature #2869

open

support lotus notes client to send reminder email?

Added by Charles Tchin about 15 years ago. Updated over 10 years ago.

Status:
New
Priority:
Low
Assignee:
-
Category:
Email notifications
Target version:
-
Start date:
2009-03-01
Due date:
% Done:

0%

Estimated time:
Resolution:

Description

support lotus notes client to send reminder e-mail?
same code like this:

require 'win32ole'

application = WIN32OLE.new('Notes.NotesSession')

database =application.GetDatabase('','mail/sample.nsf')

nD = database.CreateDocument
nD.AppendItemValue("Form", "Memo")
nD.AppendItemValue("SendTo", "User/Department/Company")
nD.AppendItemValue("CopyTo", "User2/Department/Company")
nD.AppendItemValue("Subject", "TEST")

BodyText="this is a mail from ruby application! " 

rtItem = nD.CreateRichTextItem("Body")
rtItem.AppendText(BodyText)

nD.Send(false)
application.Close

Actions

Also available in: Atom PDF