![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
| Tags: 2003, content, email, mode, outlook, reading, reformat |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Could anyone suggest a way for this:
-------------------------------- * I receive an email with a sender's phone number * When the email is open for reading in outlook 2003 the phone number is required to automatically change to a hyperlink (On Load or Button Click!). This hyperlink would point to a website with the phone number in the query string. -------------------------------- I tried designing a Message form and publishing it however could not figure out the right way. Would really appreciate! Thanks |
| Ads |
|
#2
|
|||
|
|||
|
Hello Alex,
For a similar purpose, I created a COM add-in that handles the Items.Add event in a special folder and changes MailItem.Body in accordance with some conditions. With Add-in Express, you can also choose the following ways: - for such an e-mail, you can show a LinkLabel in a toolbar (http://www.add-in-express.com/office-toolbar-controls/) - in such an e-mail, you can show your form embedded into top, right, bottom, left positions of the e-mail inspector window (http://www.add-in-express.com/outlook-extension/). The form is a descendant of a usual form and it allows you to show any controls. Regards from Belarus, Andrei Smolin Add-in Express Team Leader www.add-in-express.com "Alex" wrote in message ... Could anyone suggest a way for this: -------------------------------- * I receive an email with a sender's phone number * When the email is open for reading in outlook 2003 the phone number is required to automatically change to a hyperlink (On Load or Button Click!). This hyperlink would point to a website with the phone number in the query string. -------------------------------- I tried designing a Message form and publishing it however could not figure out the right way. Would really appreciate! Thanks |
|
#3
|
|||
|
|||
|
Hi Adrei,
I appreciate your gesture for introducing me to a very powerful, robust and flexible tools which are indepensible for any ambitious developers/programmers. However, since my requirement was a limited one, I managed to accomplish with the following concept: In the outlook Project1 (ThisOutlookSession)- --------------------------------------------- Public WithEvents olInspectors As Outlook.Inspectors Private Sub Application_Startup() Set olInspectors = Application.Inspectors End Sub Private Sub olInspectors_NewInspector(ByVal Inspector As Outlook.Inspector) 'Subroutine calls to work with the Outlook mail message body ComposeMessageForPhoneNumber End Sub --------------------------------------------- Thanks once again! |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Outlook 2003 – Email dynamic behavior in Read Mode | alex | Outlook - General Queries | 0 | October 4th 07 01:34 PM |
| Help - HTML email format lost after reading in outlook 2003 | wfei18@2dragon.co.uk | Outlook - General Queries | 1 | July 20th 07 03:53 PM |
| Emails missing complete body content, but msg is partly visible in preview mode | monitkapoor@gmail.com | Outlook - General Queries | 0 | August 30th 06 11:12 AM |
| Can't read mail in reading pane of outlook 2007 if not in safe mode | Robert Skantelj | Outlook - General Queries | 1 | August 18th 06 12:54 PM |
| how do i change outlook 2003 back to regular mode from "safe mode | CCSMUDGE | Outlook - Installation | 0 | July 5th 06 01:26 AM |