sacha chua :: living an awesome life

2086 blog subscribers
2747 on Twitter
Subscribe!
E-mail Feed reader

Lotus Notes Tweak: End of Message, No Response Needed

Taking a quick break from Javascript hacking to post this Lotus Notes tweak.

Following Susan Schreitmueller’s advice in the 28-hour Workday presentation she gave, I started replying in subject lines and using [EOM, NRN] to indicate the end of the message and that no response is necessary.

Not everyone’s familiar with this convention, so I always included a short explanation in the body of the message. After a number of these EOM/NRN messages, I created an AutoHotkey macro to save me a few keystrokes. I set up !eomnrn to expand to “EOM – end of message, NRN – no response needed”, and I used that in the body of the message.

I thought it still took too many keystrokes and mouse clicks to reply to a message, add my note to the subject line, add “[EOM, NRN]” to the end of the line, and type in the explanation in the body of the message. In fifteen minutes, I whipped up this little LotusScript agent that prompts you for a response, puts it in the subject line with an explanation, and sends the message off.

In Lotus Notes, use Create – Agent to create an agent called something like “1. EOM – NRN”. Edit the agent and put this in the Initialize sub.

	Dim workspace As New NotesUIWorkspace
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Dim collection As NotesDocumentCollection
	Dim memo As NotesDocument
	Dim reply As NotesDocument
	Set db = session.CurrentDatabase
	Set collection = db.UnprocessedDocuments
	Set memo = collection.getFirstDocument()
	While Not(memo Is Nothing)
		Set reply = memo.CreateReplyMessage( False )
		response = Inputbox("Response to " + memo.Subject(0))
		If (response <> "") Then
			reply.Subject = response + " re: " + memo.Subject(0) + " [EOM, NRN]"
			reply.Body = "EOM - end of message, NRN - no response necessary"
			reply.IsSavedMessageOnSend = True
			reply.Send(False)
		End If
		Set memo = collection.GetNextDocument(memo)
	Wend

Then you can select the message(s) you want to whiz through, type Alt-A 1 to call the action, and reply quickly. You can also call it while viewing a message, which is probably a safer place to start.

Enjoy!

So-soHmmGoodGreatAwesome! (No Ratings Yet)
Loading ... Loading ...
Save to - del.icio.us - Digg it - reddit - StumbleUpon -

One Response to “Lotus Notes Tweak: End of Message, No Response Needed”

  1. I just switched to a new job where I’m required to use Notes. I’m not particularly liking the client (to put it mildly), so I’d love to see what else you have to say as far as making it more livable.

    (As an aside, the new organization is also much much less email driven than I’m used to, and I think it’s because their email platform is so … inadequate.)

Discussion Area - Leave a Comment

Please comment as you, not your organization.





On This Day...

  • 2009: Delegating weaknesses; experimenting with social secretaries — I really enjoy bringing people together for great conversation and sending them home with new connections, new ideas, and perhaps [...]
  • 2008: The Gen Y Guide to Web 2.0 at Work — An IBM colleague asked me to put together a few tips for Web 2.0 at Work. Here’s something I had [...]
  • 2006: Raided the bookstore — Good to great and the social sectors: Why business thinking is not the answer Jim Collins It’s a slim monograph and fairly [...]
  • 2006: Joy! — I just got back from Chapters, the main bookstore chain here in Toronto. I browsed through nine books and bought four. [...]
  • 2005: Sheep — Babe’s airing on HBO right now. It reminds me of this Windows 3.11 game about herding sheep. The strange thing is [...]
  • 2005: Odd things — On our way back from Infoweapons (and on the prowl for non-fried places to eat), Paolo and I spotted a brightly-lit [...]
  • 2005: Profiling Your Customer — People are often thrilled by the fact that I try to keep track of their interests and inclinations. I avidly file [...]
  • 2003: More Debian goodness — - http://debianhelp.org - http://www.debian.org/devel/debian-desktop
  • 2003: Good Design Comes From Bad Design — http://www.uiweb.com/issues/issue08.htm
  • 2003: Moved back home — Papa picked me up yesterday and brought me home. Catastrophix now has a nice, soft coat, and her eyes are starting [...]
  • 2003: Hackers and Painters — Anuerin Diaz posted an interesting link to PLUG: http://www.paulgraham.com/hp.html The way to create something beautiful is often to make subtle tweaks to [...]