Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 35
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 107
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 109
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 111
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 112
Apr
Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 35
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 107
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 109
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 111
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 112
16
Supplementing a Reminder with an Email Message in Outlook 2007
Microsoft Outlook, Tips & Tricks Add comments
Setting up a reminder to follow up on an email message, as described in the previous secÂtion, is a useful way to prod yourself to move on handling that email. Unfortunately, reminders don’t do you much good if you’re not there to see them. For example, you might be out of the office when the reminder displays. If you are away from your desk only for a short time, it is no big deal because you will see the reminder when you get back. However, if you are gone for an extended period, the reminder isn’t useful.
You can work around this problem by configuring Outlook to send an email message to any account that you have access to while away from the office. You do this using a VBA procedure, such as the one shown in Listing 1.
CAUTION
By default, Outlook 2007 is set up to disable all macro projects that aren’t signed with a security certificate.To get your own code to run,choose Tools,Trust Center to open the Trust Center dialog box. Click Macro Security and then click the Warnings For All Macros option. Click OK to put the new setting into effect and then close and restart Outlook.
Listing 1 A VBA Procedure that Sends an Email Message When Outlook Processes a Reminder

The Application_Reminder procedure is an event handler that runs whenever Outlook processes a reminder, and the Item variable that’s passed to the procedure represents the underlying Outlook item: an appointment, contact, message, or task. You can paste this procedure into the ThisOutlookSession module in Visual Basic Editor.
NOTE
To open the ThisOutlookSessionmodule in Visual Basic Editor, first choose Tools, Macro, Visual Basic Editor (or press Alt+F11). In the Visual Basic Editor’s Project pane, open the Project1 branch, open the Microsoft Office Outlook Objects branch, and then double-click ThisOutlookSession.
The procedure declares a MailItem (message) variable named msg, uses it to store a new message, and then sets up the message’s To, Subject, and initial Body properties. Then a Select Case statement processes the four possible Item classes: olAppointment, olContact, olMail, and olTask. In each case, the message body is extended to include data from the item. Finally, the message is sent using the Send method, and the msg variable is released.
NOTE
If you want to send the email to multiple recipients, one option is to use the MailItemobject’s Ccor Bccproperties. If you prefer to place multiple addresses in the message’s To field, use the Recipients.Addmethod as often as needed, like so:
msg.Recipients.Add “another@domain.com”
Technorati Tags: reminder, email message, outlook 2007
Popularity: 3% [?]








Recent Comments