I need to flag a message for followup with a reminder

Can you flag an email message in Microsoft Outlook with a reminder on an iPhone?

Outlook reminders only work within outook. I use a service called Followupthen that sends me text reminders for emails I need to deal with. It doesn't require a particular email client. You may find it useful.

Similar Messages

  • (Bold 9900 - BBOS 7.1) Is there a way to automatically add reminder alert when flagging a message for follow-up?

    I love the feature in Outlook that lets me flag a message for follow-up and automatically adds a default reminder at the end of the day. Is this something I can configure my Blackberry 9900 to do (running 7.1)?
    As far as I can tell, when I flag something for follow-up, it adds a flag but does NOT add any reminder alerts. If I want to do that, I then need to manually add the reminder and set it (which is a little cumbersome).

    I guess timed message is on the wish list
    However in all my forms I use following scenario to validate all data entry at one time and then submit...
    I use regular button and add code in Click event
    JS example.....
    var errorFlag = 0;
    var errorMsg = "";
    if (validation expression 1) {
         //true/pass
         //no need to change following values
         errorFlag = errorFlag;
         errorMsg = errorMsg;
    }else {
        //false/fail
       //set the flag and message accordingly
        errorFlag = errorFlag + 1;
        errorMsg = errorMsg + "validation message1" + "\n"; //\n for new line with in the message
    if (validation expression 2) {
         //true/pass
         //no need to change following values
         errorFlag = errorFlag;
         errorMsg = errorMsg;
    }else {
        //false/fail
       //set the flag and message accordingly
        errorFlag = errorFlag + 1;
        errorMsg = errorMsg + "validation message2" + "\n"; //\n for new line with in the message
    //finally
    if (errorFlag > 0) {
        //>0 indicates there are one or more errors
        xfa.host.message(""+errorMsg);//display all messages at one time
        exit; //now since there are validation errors you can stop processing further and exit the event
    //add submit code......here....

  • HT3529 Is there a way to create, store and use preset messages for use with "Messages"?

    Is there a way to create, store and use preset messages for use with "Messages". I often have a recurrinig message to send, after a repeating event, and need to enter the same short message each time. It would be nice to have this short message stored and selectable so that I do not need to enter each time.

    found an answer that seems to work:
    https://discussions.apple.com/message/17997300#17997300

  • Need to download printer driver for 3510 with windows 10

    I need to download printer driver for 3510 with Windows 10

    Here is the link to the Deskjet 3510 drivers.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • Adobe needs to develop an api for communicating with HTML Overlays & Indesign Objects

    I'm a front-end developer who has been assigned the task of developing one of our client's DPS every month. While I praise Adobe for saving a dying a industry and giving non-developers simple GUI controls, they need to develop an api for communicating from HTML Overlays to Indesign MSOs and other objects.
    I've had to do some intense animations/pages; which I in turn simply developed all in HTML5 and did an overlay. The time put into those pages could have been greatly reduced if their was a proper API in place to trigger different MSO and events. Is anybody at Adobe working on this? As DPS matures, and more developers are tasked with making folios it's imperative we have a proper way way to develop.

    We had a page for embedded movies in a lightbox; the client said customers were complaining that the folios were too large and took too long to download. So we switched to youtube streaming page, but they wanted a poster and autoplay enabled. If you have ever programmed with mobile video, you'll know devices are extremely difficult to manipulate.
    I had to do an html overlay with a bunch of transparent divs for hotspots and buttons. If I could have told Indesign to move different objects layer orders or go to a different MSO it would have saved me hours.
    Doesn't DPS support localstorage? Couldn't you guys whip up a little api to trigger events via localstorage?
    Off topic, another request:
    - enable the safari webkit inspector for debugging connected ipads with folios that have html overlays; you guys don't fully support HTML5 or certain js events and it's extremely annoying and difficult to debug. 

  • How do I mark an e-mail message for followup on a specific date?

    I want to mark an incoming e-mail message to be followed up on a specific date/time.  When that date arrives I want a reminder to pop up on my desktop.  I can do this in Outlook, but would rather use the native Mac Mail if possible.
    Walt

    For some reason the Drag-and-Drop to the Calendar followed by Drag-and-Drop to Reminders does not work for me.
    I found a much more elegant solution using Automater here:
    https://discussions.apple.com/message/16569500#16569500
    Thanks to Chuck Kalish for contributing the code.  Now I can create the reminders with a single keypress, and I can also modify the code to tailor the exact text of the reminders to suit my needs.
    Walt

  • What do I need to use unified messaging for single line voice mail

    I am a solo practitioner, and would like to use UM to answer calls to my business number, locate me on my cell phone if appropriate, or give a non-business hours message, and take a secure message.
    I do not want to use cell phone voice mail due to security concerns. I currently have a number that goes straight to a hippa compliant voice mail service only, but will not follow me on my cell. What is the minimal set up I need to forward calls to UM? Do
    I actually need a physical phone, or would just a sim chip or some other service work?

    Hello,
    Here is the entry for Exchange Online Forum:
    https://social.technet.microsoft.com/Forums/msonline/en-US/home?forum=onlineservicesexchange
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Status and messaging for systems with a large number of classes

    Very common dilemma we coders face when creating
    systems involving a large number of classes:
    Any standard framework to take care of the global status of the whole application and of gui subsystems
    for both status handling and report messages to users?
    Something light if possible...and not too much threads.

    Ah, I see,
    I found JPanel with CardLayout or a JTabbedPane very good for control of several GUI in an application - as alternative organization tool I use a JTree, which is used for both, selecting and organizing certain tasks or data in the application - tasks are normally done with data associated with them (that is, what an object is for), so basically a click onto a node in this JTree invokes an interface method of that object (the userObject), which is associated with this node.
    Event handling should be done by the event-handling-thread only as far as possible - it is responsible for it so leave this job to it. This will give you control over the order in which the events are handled. Sometimes it needs a bit more work to obey this rule - for example communication coming from the outside (think of a chat channel for example) must be converted to an event source driven by a thread normally. As soon as it is an event source, you can leave it's event handling to the event handling thread again and problems with concurrent programming are minimized again.
    It is the same with manipulating components or models of components - leave it to the event handling thread using a Runnable and SwingUtilities.invokeLater(Runnable). This way you can be sure that each manipulation is done after the other in the order you have transferred it to the event handling thread.
    When you do this consequently most of your threads will idle most of the time - so give them a break using Thread.sleep(...) - not all platforms provide preemptive multitasking and this way it is garanteed, that the event handling thread will get a chance to run most of the time - which results in fast GUI update and fast event handling.
    Another thing is, that you should use "divide and conquer" also within a single GUI panel - place components in subpanels and transfer the responsibility for the components in this panel to exactly these subpanels - think of a team manager which makes his employees work together. He reports up to his super manager and transfers global order from his boss into specific tasks by delegation to the components, he is managing. If you have this in mind, when you design classes, you will have less problem - each class is responsible for a certain task - define it clearly and define to whom it is reporting (its listeners) and what these listeners may be interested in.
    When you design the communication structure within your hierarchy of classes (directors, managers, team managers and workers) have in mind, that the communication structure should not break the management hierarchy. A director gives global orders to a manager, which delegates several tasks to the team managers, which make their workers do what is needed. This structure makes a big company controlable by directors - the same principles can also keep control within an application.
    greetings Marsian

  • Need AV or IS Software for Mac with Windows apps?

    I would like to know if it is advisable to install anti-virus or Internet security software on a Mac if you run both Mac and Windows applications. I ask this question because I understand that those programs may not as necessary for Mac applications only but I wonder if the Windows applications that I installed under Parallels Desktop 7 will cause the computer to be  vulnerable. I also wonder whether in installation of the AV or IS software will protect both the Mac and Windows virtual machines. Thanks

    Antivirus software for OS X is not necessary. However if you run MS Windows in any fashion meaning via Boot Camp or virtualization software such as Parallels or Fusion then you should treat the MS Windows installation as you would ANY MS Windows installation, in other words install antivirus software for MS Windows! The good news is even if your MS Windows becomes totally diseased this will in no way affect the OS X installation.
    In your case because you have installed Windows in Parallels then get yourself some antivirus software for MS Windows and install away. You can resist the urge for antivirus software for OS X though for many reasons, first an foremost is there are zero (none, nada, zip) viruses for OS X. While there are some trojans out there for OS X they are few and far between. The primary difference between a Trojan and virus is that Trojans must be downloaded and installed by the user. The lesson to learn here is  only download from trusted sites and any site that tells you to download something should be approached with a great deal of caution. In other words if you aren't sure don't do it and come to a these forums and ask. The next reason OS X doesn't need antivirus software is most take up a lot resources on your computer and slow it down, and finally many tend to create more problems than they solve. If you still aren't convinced then download ClamXav, it's free, unobtrusive and kept up-to-date.

  • Async interface needed out of Sync wsdl for communicting with idoc(async)

    Hi all,
    I have a scenario like this
    1.the sender is a synchronous webservice(wsdl provided by the client)
    2.the reciever is an async Idoc
    I need to send the soap request message to the idoc.i dont need any response back,but the problem is its a sync async communication.
    please suggest
    Abhishek

    Dear Bhavesh,
    How can I modify the wsdl file as its created by the XI system itself and where to change the qos and how to change the url ?
    This is the url of the webservice created in ID:
    http://uk-sap-030di:50000/XISOAPAdapter/MessageServlet?channel=:BS_Exten_Wrnty:Send_EWSC_Invoice_Webservice&version=3.0&Sender.Service=BS_Exten_Wrnty&Interface=http%3A%2F%2Fnissanexwrn.com%5EMIOS_Webservice
    Please suggest
    Abhishek

  • Automatic message for problems with partner transfer

    Hello gurus,
    every 15 Minutes we automatically transfer new or changed partners from SAP ERP to GTS.
    Now, if there is an error in one of those partners and they cannot be transferred successfully (e.g. because of missing or inconsistent address data), SAP retries to create/change that partner every 15 minutes.
    Unfortunately, I cannot check the transfer logs five times a day for any errors that might occur.
    Because of that, it sometimes takes several days until I come to discover the error. Until then, many, many transfer logs have been created, most of them containing only one entry. Furthermore, the particular partner cannot be used in SAP ERP until the error is resolved, because it is blocked by GTS.
    Is there any way to create a message to me (via mail or in SAP), if there is an error with partner transfer?
    Thank you
    Alicia

    An alternate option would be to create a custom program that would read the unprocessed change pointers in ECC ( these would correspond to the customer's that have not made it successfully to GTS) and run this program soon after your transfer program completes...
    This will give you a list of customers not transferred to GTS..
    Thanks
    Jasmit

  • We need to upgrade your catalog for use with Lightroom 6.

    Adobe CC member.  Downloaded new LR CC.  Shows as installed in Adobe creative cloud.  Wouldn't run at first, but logged out and back in.  Now upon launch I get a dialogue box named Lightroom Catalog Upgrade, asking to click to upgrade my catalog, but this freezes with an unending blue circle  and the program never launches.  I have tried deleting and reloading the entire program.  I still have LR 5 on my machine.  Is this normal?  I thought CC replaced 5.  Help appreciated.

    To 3110,
    I am facing a similar situation here. The description that you posted matches my requirement more or less.
    So... which option did u choose? And any suggestions on how to go about it for people who are implementing a similar architecture?
    Cheers,
    V

  • Need help adding filter criteria for reports with the GO URL + Post method.

    In attempts to hide some of the information from the URL, we've decided to go pull the parameters out of the url used in the GO Url method. We've managed to get it to retrieve the report and display it without showing the user name and password how we cannot seem to pass in any search criterias.
    The following is what i have:
    Can anyone help me with this issue? or provide any suggestions?
    Thanks!
    form id="form1" runat="server" action="http://452.342.424.421/analytics/saw.dll?Go" method="post">
    <input runat="server" id="Cmd" type="hidden" name="Cmd" value="Answers"/>
    <input runat="server" id="nqUser" type="hidden" name="nqUser" value="admin"/>
    <input runat="server" id="nqPassword" type="hidden" name="nqPassword" value="admin"/>
    <input runat="server" id="Path" type="hidden" name="Path" value="/users/abid.farooq/Countries" />
    <input type="hidden" name="Options" value="fr" />
    <input type="hidden" name="Action" value="Navigate" />
    <input type="hidden" name="P0" value="1" />
    <input type="hidden" name="P1" value="eq" />
    <input type="hidden" name="P2" value="%22Location%22.%22Country%20ID%22" />
    <input type="hidden" name="P3" value="CHN" />

    Hi,
    Instead of this,
    <input type="hidden" name="P2" value="%22Location%22.%22Country%20ID%22" />
    can you try this:
    <input type="hidden" name="P2" value='"Location"."Country ID"' />
    Here, instead of enclosing the value in double quotes, enclose in single quotes. Also replace %22 and %20 with double quotes and space.
    Try it and let me know if this helps!
    Thanks

  • Premiere Pro - Insufficient Media error message for transitions

    Keep getting  Insufficient Media error message for transitions with premiere pro, can you help please?

    You need to make handles before adding a transition.
    Adobe Premiere Pro Help | Transition overview: applying transitions

  • Messages for 10.8.4 not counting unread messages as read.

    Been using messages for months with out a problem  restored my macbook pro 15 not retina 2012   a few weeks ago using the built in recovery software and then migrated my account over. After that is when i ran in to the problem of messages not counting any of my messages as read i use this for work and its become very irritating  we use the jabber protocol for a local ichat server  its worked fine till now.  iv tired all the fixes others have posted  killing the dock  reseting pram  rebooting  even trying another restore didn't help, iv removed the account and readded it  removed all archived chats and attachments. tired closing out of each conversation and staring a new one nothing  seams to fix it. Iv even tired making a new user account on the computer same problem. any ideas would be very helpful.

    HI,
    Did you try Safe Boot ?
    9:22 PM      Friday; July 19, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • Performace Which is better ?  : Bapi inside a loop OR Select from Tables

    Hi Gurus, I have a report which displays purchase info records. If I am selecting from tables i need to use EINA, EINE, EORD and some other tables. There is a BAPI which gets all purchase info records specific to a vendor , material , purchasing orga

  • Trouble with Making A Book

    I am in the process of making a book. I just received new photos that I want to include, that were not included when I made the original file. When I take my event group of pictures and drag it to the book icon - nothing happens. I believe the pictur

  • HT5096 where is the administrator window when I drag the folder "Backups.backupdb" from the old hard drive on the new one?

    where is the administrator window when I drag the folder "Backups.backupdb" from the old hard drive on the new one? At the moment when I try to do it, the window that appear doesn't allow me to continue. it only says "the volume has the wrong case se

  • Best DVD-R brands

    I am having a problem searching for the best dvd-r material to use. I keep getting problems with canon dvd-r recording captures. Can someone guide me in the recommened brands of DVD-R material? I understand most people rely on Taiyo Yuden as the leas

  • 64 bit Vista-should I return new computer since I can't use Z22 or E2?

    I've read enough to realize there is no compatibility with the new 64 bit systems; I'm no geek (don't even know what 64 bit means) but I know I need my Palm info; I didn't want to go with Vista but didn't have a choice that I'm aware of; just purchas