How can i send lotus notes email through SMTP server to Microsoft outlook without installing lotus notes in users machine ?
Subject: Sending mail with doclink
Try this code (send doclink to the current doc):
Dim s As NotesSession
Dim db As NotesDatabase
Dim newsletter As NotesDocument, currentnote As NotesDocument
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set s = New NotesSession
Set db = s.CurrentDatabase
Set uidoc = workspace.CurrentDocument
Set currentnote = uidoc.Document
Set newsletter = New Notesdocument(db)
Set rtitem = New NotesRichTextItem( newsletter, “Body”)
newsletter.Form = “Memo”
newsletter.SendTo = “name@domain.com” 'Enter your email here
newsletter.Subject = "Documents you requested from " & db.Title
'Create the body of the mail memo with doclinks
Call rtitem.AppendDocLink ( currentnote, db.Title)
newsletter.Send(True)
Subject: Sending mail through SMTP server
Thanks to Victor and Girish, i got the point. Can you please share the code for lotus script for sending email to outlook? One more question i want to ask is that how can i change the code for the doclink so that it can be open in outlook.
Many thanks
Subject: SMTP Mail via Domino
I suppose you are looking at sending a SMTP email via a domino server to a user who uses Microsoft Outlook to read emails. Is that right? Yes as stated by Victor you can use any SMTP\POP3\IMAP client to connect to a domino server and send out mails.
Subject: Sending mail through SMTP server
You can use any mail client with Domino SMTP server