Link to home
Start Free TrialLog in
Avatar of ashik1
ashik1Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Mailing via LotusScript

How do I mail a message including a link via Scripting in Lotus Notes? The script should be assigned to a Form Action.(R4.5.5)
Avatar of ashik1
ashik1
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

Adjusted points to 260
ASKER CERTIFIED SOLUTION
Avatar of stamp
stamp

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of stamp
stamp

P.S.:
You can increase the recipient number if you change the paramter definition of the function SendMailMemo:
Function SendMailMemo(sendTo As Variant, _
cc As Variant, _
bcc As Variant, _
subject As String, _
body As String, _
linkTo As NotesDocument) As Integer

With Variant type you can call as many recipiants as you have:
flag% = SendMailMemo(doc.PersonsInvolved, doc.CopyTo, doc.BlindCopyTo, doc.ChangeSubject(0), "Body Text", doc)

Simply omit the zeros.

Try it.

Regards,
stamp