OLKeeper | |
OLKeeper reliably prevents users from closing their Outlook window and thus possibly missing reminders or e-mails. |
By using bookmarks you can collapse and expand text in an email. Select any text in your email, click Insert, Bookmark, and name the bookmark. In the code enter the name of the bookmark under the comment line between the quotes. You can start the macro by pressing alt+f8.
The sample works with Outlook 2007 and higher. It could also work for the older versions of Outlook if you set Word as mail editor.
Public Sub CollapseExpandText() Dim Ins As Outlook.Inspector Dim Document As Object 'Word.Document Dim Bm As Object 'Word.Bookmark Dim Fn As Object 'Word.Font Set Ins = Application.ActiveInspector Set Document = Ins.WordEditor 'Here enter the name of the bookmark Set Bm = Document.Bookmarks("HideText") Set Fn = Bm.Range.Font Fn.Hidden = Not Fn.Hidden End Sub
SAM | |
Determine the "identity" of your emails. Set with SAM the sender and the folder folder for sent items with the help of rules. |