Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lotus notes and blackberry

Status
Not open for further replies.

darahw

Technical User
Feb 27, 2003
74
US
I wanted to know if there is an easy way in Lotus Notes for the mail administrator to forward my incoming email to my blackberry internet email address so I can get all my corporate email on my blackberry.

We don't have a BES server.


Thanks!!
 
don't think so without a BES server. If you have web access via domino then the blackberry's are good for iNotes6 designs and easy to nav through it.



 
My boss (president) bought a BB one weekend. I setup his BB email account via Verizon. Then in his notes client I created a rule to forward all incoming email to his BB email account. The calendar and address book should sync with the supplied software.

Good luck! The black berry software has been a little unstable and has corrupt my boss's calendar in his notes client. Nothing that 3 hours with verizon/BB tech support didn't solve.
 
It took me a while to find out all the info I needed to, but I finally got this working with our Domino Server (version 5.0.12).

I created an agent that runs "after new mail arrives". I told it to use "LotusScript" instead of "Simple Action(s)". I then pasted the script below (which I pulled off of another forum)--just change "Myaccount@mymail.com" with whatever address you want to send to. This script is great because it will keep the original sender's name and the original subject's name:

Sub Initialize

Dim s As New NotesSession
Dim db As NotesDatabase
Dim col As NotesDocumentCollection
Dim doc As NotesDocument
Dim maildoc As NotesDocument

Set db = s.currentdatabase
Set col = db.unprocesseddocuments
Set doc = col.getfirstdocument
While Not (doc Is Nothing)
Set maildoc = db.createdocument
maildoc.From = doc.From
maildoc.ReplyTo = doc.From
maildoc.SendTo = "Myaccount@mymail.com"
maildoc.Subject = doc.Subject
maildoc.Body = doc.Body
maildoc.Form = "Memo"
maildoc.Principal = doc.From
maildoc.Send (False)
Call s.UpdateProcessedDoc( doc )
Set doc = col.getnextdocument( doc )
Wend

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top