How to call back a sent mail

I have sent a mail and want to recall it , how can I do that ?

that is not a good news , thanks a lot for your quick answer
Have a lovely sunday
susanne

Similar Messages

  • How can I ad a 'sent mail' mailbox to my list of mailboxes?

    How can I add a 'sent mail' mailbox to my mailboxes?

    AppleScript  <--------- CLICKY CLICK
    You can cross post there if you want to do a script for what you want to do w/your Mail.  You will NOT be violating Apple's TOU.  The experts there will provide you w/detailed instructions.

  • How to call backing bean method from java script

    Hi,
    I would like to know how to call backing bean method from java script.
    I am aware of serverListener and [AjaxAutoSuggest article|http://www.oracle.com/technology/products/jdev/tips/mills/AjaxAutoSuggest/AjaxAutoSuggest.html]
    but i am running in to some issues with [AjaxAutoSuggest article|http://www.oracle.com/technology/products/jdev/tips/mills/AjaxAutoSuggest/AjaxAutoSuggest.html]
    regarding which i asked for help in other thread with subject ....Question on AjaxAutoSuggest article (Ajax Transactions Using ADF and J...)
    The reason why i posted is ( though i realise both are duplicates) .. that threads looks as a specific question to that article hence i would like to ask the quantified problem is asked in this thread.
    So could any please letme know how to call backing bean method from java script
    Thanks
    Murali
    Edited by: mchepuri on Oct 24, 2009 6:17 PM
    Edited by: mchepuri on Oct 24, 2009 6:20 PM

    Hello,
    May know how to submit a button autoamtically on onload of page with clicking a welcome alert box. the submit button has managed button too to show a message on console using SOP.
    the problem is.
    1. before loading the page a javascript comes on which i clicked ok
    2. the page gets loaded and the button is there which gets automatically clicked and the managed bean associated with prints a message on console using SOP.
    I m trying to do this through server listener and click listener. the code is(adf jspx page)
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_check4.d1}">
    <af:form id="f1" binding="#{backingBeanScope.backing_check4.f1}">
    <af:commandButton text="commandButton 1"
    binding="#{backingBeanScope.backing_check4.cb1}"
    id="cb1" action="#{beanCheck4.submit1}"/>
    <af:clientListener type="click" method="delRow"/>
    <af:serverListener type= "jsServerListener"
    method="#{backingBeanScope.backing_check4.submit1}"/>
    <f:facet name="metaContainer">
    <af:resource type ="javascript">
    x=confirm("hi");
    // if(x){
    delRow = function(event){
    AdfCustomEvent.queue(event.getSource(), "jsServerListener", {}, false);
    return true;
    </af:resource>
    </f:facet>
    </af:form>
    </af:document>
    </f:view>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_check4-->
    </jsp:root>
    the backing bean code is -----
    public class classCheck4 {
    public classCheck4() {
    public String submit1() {
    System.out.println("hello");
    return null;
    }

  • My SENT mailbox is empty on my computer, mail up til yesterday is on mobileme on browser. I used to have 'my .mac account' and 'on my computer' as mailboxes. 'On my computer' has disappeared. HOW can I restore my SENT mail list? tnx

    any help or suggestions would be most welcome. The contents of my sent box disappeared once before, but came back after relaunching. Not this time.
    tnx eliza

    Thanks, Chris ~
    Sync has not worked (yet) ~
    I'll try archiving from mobileme mail on browser... I can't open the SENT mailbox on TIme Machine on my computer. [It's not the end of the world to lose my Sent Mail, bcz it is still availble via brwoser, but I prefer to be in charge of my computer, not it in charge of me :-D]
    So much to learn!

  • How can i see previous sent mail and junk mail on my new iMac?

    Hi guys.
    I'm new imac user.I use Mavericks 10.9.When i install my mail accounts one of them which is Hotmail my imac downloaded whole incoming box.this is ok.But didnt download previous sent outgoing mail.So my outgoing folder empty.And how can i see my junk mail on my new imac's mail app.
    Thanks all

    Is anybody know these answers?

  • How to call back to C via JNI in Java started from C?

    Hi!
    This problem might seem outlandish, but I have not been able to find any other method to reach my goal. The situation is the following.
    There is a C++ program I intend to interface with a piece of Java code, called the manager. The C++ code invokes a VM, starts a Java glue code, that connects to the manager via RMI. This works fine. The glue code, however, can be called from the manager, via RMI as well. The problem is, that these calls should in turn call functions in the C++ code, that originally started the Java glue code. JNI can only load a library, but this is not what I want to do now. I want to somehow connect back to the C code that started the Java code. Is this possible at all?
    Thanks for your help,
    Ambrus

    What you want to do is not too tough, but there will be some details to be worked through. In particular, you have to figure out how to make your "callback" get from your "glue" code back into your C++.
    1. Calling back out is from java to C is pretty easy. There is a JNI function for registering a native method with the JVM. Here is an example of the registration code:
    // See if the service interface class is known.
    javaClass = javaEnv->FindClass("JavaInterfaceObject");
    if (javaClass != 0) {
    //Register a native method to place java server messages in the service log.
    // Define the service logger native method.
    JNINativeMethod methods[] = {
    {"addToMessageLog", "(Ljava/lang/String;)V", Java_addToMessageLog}
    // Register the method with the jvm.
    javaEnv->RegisterNatives(javaClass, methods, 1);
         javaEnv->ExceptionClear();     // Just in case not found.
         return TRUE;
    2. You have to define the native method:
    * Native method - callback to place java server messages in the service log.
    JNIEXPORT void JNICALL Server::Java_addToMessageLog(JNIEnv * javaEnv, jclass javaClass, jstring javaMsg) {
         jboolean     isCopy;
         const char* msg = javaEnv->GetStringUTFChars(javaMsg, &isCopy);
         Server::theServer->logger->addToMessageLog((char*)msg);
         if (isCopy)
              javaEnv->ReleaseStringUTFChars(javaMsg, msg);
    3. The real headache is that this is C code, not C++. In other words, if you really need to call into C++, then you need to seed your callback so that it has a pointer to the appropriate C++ object.

  • How can I create additional "Sent Mail" folders so that I can organize my sent mail along the same lines as the inbox? I use Mail v 4.5

    How can I create additional or sub "Sent Mail" folders so that I can organize my sent mail along the same lines as the inbox? I use Mail v 4.5.

    Thank you for your reply Don, but I had already gone through that procedure and it will only create new mailboxes for received mail. I want to create new mailboxes for sent mail, i.e. the first column being "to" not "from". Under the Mailbox menus there is an option "Use This Mailbox For" but all the options under that (including Sent) are greyed out. Unfortunately the View/Columns option to change from "From" to "To" changes all mailboxes not just the active one.

  • How to call Backing Bean method from href tag in JSF. -- URGENT

    Hi guys,
    i am new to JSF. i want one option. how to call a backing bean method from href.
    I searched a lot. i found one component <commandLink>, but i cann't use <commandLink> i have to use only href which is client instructions.
    If anyone knows pls help me. Its Urgent. If u can, give me the code also.
    Suggestions will be appreciated.
    Thanks
    Rajesh

    You can make use of the constructor of the backing bean or the @PostConstruct annotation if you want to use managed properties.
    You may get some ideas out of this: [http://balusc.blogspot.com/2006/06/communication-in-jsf.html].

  • HT1766 hi, how to call back the back up when its has been overwrite with the new one?

    hi, i was tried to back up and restore my iphone 5 and then update to the latest version with my mac itunes, unfortunately my iphone 5 hang in the middle and it reback-up and overwrite the previous one and i didnt know how com it will overwrite the old one with the new back up, which means all my datas gone, how am i going to call back them?

    You don't unless you keep regular backups of your computer in which case you can restore previous backup files.

  • How do I clear the Sent mail folder on my ipad?

    I have an ipad mini and just noticed that the Sent Mail folder is not being periodically cleared as I assumed it was.
    Now I have nearly 18 months worth of Sent messages, and I can't find anyway to clear out those messages other than clicking on each individual message one by one and deleting them.   With 18 months worth of messages it will take forever to delete them all one by one.
    There must be some way to clear the folder or to mark a range of messages for deletion?

    Unfortunately you are correct (and I was wrong - I just looked on my iPad  ). I have my mail set up on my computer and manage the retention there.
    I looked to see if there is a way (on an iPad) and could not find one.
    Barry

  • How to get back my deleted mail message

    how to get back my deleted message

    Not very likely, but It's possible, but you must quit using the Computer immediately.
    Either boot this one in Target mode...
    http://docs.info.apple.com/article.html?artnum=58583
    And recovering from another Mac, or booting this Mac from another HDD, then using Data Rescue II...
    http://www.prosofteng.com/products/data_rescue.php
    (Has a Free Demo to see if it could or not, but you'll need another drive to recover to).
    Or professional Data Recovery Services.
    BUT, every second you use that Mac the chances will be slimmer.

  • How to call Link in Rejection mail

    Hi Experts,
    When a Approver rejects a Shopping Cart, i am sending an email.In that email i wnat to send a link using which the user can login and directly open the shopping cart in change mode.
    How do i create that Link or how do i call a transaction ?
    Runal.

    there is one standard report available in the system which generates mails for the shopping cart approval.
    this report only considers workitems which are to be approved and sends them over to the relevant approvers.
    This is the case when the approvers has to approve the shopping cart , it will open link where the approver can approve ths shopping cart.
    you can change the same report to consider the rejected shopping carts and send over the links, but i am not sure what will open up when you click on this link
    report RSWUWFMLEC is used by the system to generates the mails
    Edited by: khan voyalpad usman on Sep 14, 2009 6:13 AM

  • How to call backing bean method when user tabs out of af:inputListOfValues field

    Hi,
    I am using jdev 11.1.2.4.
    I want to call a backing bean method based on the value selected in the af:inputListOfValues field.
    The requirement is similar as Frank Nimphius-Oracle has demonstrated here  https://blogs.oracle.com/jdevotnharvest/entry/how_to_notify_the_server but with Input List of Values component.
    The fields I want to call method from is
    <af:inputListOfValues id="appealNameId"
                          popupTitle="Search and Select: #{bindings.AppealName.hints.label}"
                          value="#{bindings.AppealName.inputValue}"
                          label="#{bindings.AppealName.hints.label}"
                          model="#{bindings.AppealName.listOfValuesModel}"
                          required="#{bindings.AppealName.hints.mandatory}"
                          columns="#{bindings.AppealName.hints.displayWidth}"
                          shortDesc="#{bindings.AppealName.hints.tooltip}"
                          binding="#{backingBeanScope.backing_Donation.appealNameId}"
                          autoSubmit="true" clientComponent="false">
                          <f:validator binding="#{bindings.AppealName.validator}"/>
                          <af:autoSuggestBehavior suggestedItems="#{backingBeanScope.backing_Donation.onSuggestAppeal}"/>
                          <af:clientListener method="onBlurTxtField" type="blur"/>
    </af:inputListOfValues>
    <af:serverListener type="onBlurNotifyServer"
                       method="#{backingBeanScope.backing_Donation.onBlurNotify}"/>
    as you can see,  af:serverListener is outside the af:inputListOfValues which probably is the reason its not executing this method?
    public void onBlurNotify(ClientEvent clientEvent) {
       // get a hold of the input text component
       RichSelectOneChoice inputTxt =  (RichSelectOneChoice) clientEvent.getComponent();
       //do some work on it here (e.g. manipulating its readOnly state)
       //Get access to the payload
       Map  parameters = clientEvent.getParameters();
       System.out.println("SubmittedValue = "+parameters.get("submittedValue"));
       System.out.println("LocalValue =  "+parameters.get("localValue"));
    I've tried to put serverListener tag inside the <af:inputListOfValues> but getting below error
    "Server Listener is not valid child of Input List of Values"
    any ideas please?
    thanks

    As first, check to see that you are using correct type for af:serverListener (thet one you are queue in the javaScript onBlurTxtField function)
    If still does not work, go to directly to the page source code, and put af:serverListener "by hand", as a child for af:inputListOfValues.
    Because it is possible that these messages are false alarm...

  • How to call Back end Bean method on Refresh (F5 from i.e.)

    I am very much new to JSF. I tried hard learning it. But I am not able to achive one thing.
    Question :
    How do we set some value in Back end bean when user presses F5(refresh from i.e)
    I have some root tag as given below. I tried checking properties of a4j:form but nothing seems to be releveant.
    <ui:composition>
         <rich:panel>
              <a4j:form id="FirstForm">
    I am kind of stuck with one week. Please provide help.

    Pasting the entire sample code. Here bBean is singleton.
    <ui:composition>
         <rich:panel>
              <a4j:form id="FirstForm">
         <table id="table" width="100%">
                        <tr>
                             <td style="margin-top: 8px;" class="fieldLabel" nowrap="nowrap"
                                  align="left" width="15%">
                             <p><h:outputText value="Option Name :">
                             </h:outputText> <span class="requiredField">*</span></p>
                             </td>
                             <td style="margin-top: 8px; width: 120px" class="fieldLabel"
                                  nowrap="nowrap" align="left"><rich:comboBox id="combo"
                                  value="#{bBean.selectedOption}"
                                  enableManualInput="false">
                                  <f:selectItems value="#{bBean.getAllOptions}" />
                                  <a4j:support event="onchange"
                                       reRender="FirstForm" BypassUpdates="false"
                                       ajaxSingle="true"" />
                             </rich:comboBox></td>
                        </tr>
                   </table>
              </a4j:form>
         </rich:panel>
    </ui:composition>
    </html>

  • How can i sync my sent mail folder with mfe

    I can not see the mails that I sent using outlook on my phones sent items list. can anybody help me on this?

    Found the answer from another discussion here and it did work in about 2 minutes:
    in settings, click mail, contacts , calendars
    you need to add two accounts:
    one for mail as a Yahoo account
    another per the instructions below
    Yahoo syncs contacts by adding a CardDAV account:
    Tap Mail, Contacts, Calendars
    Tap Add Account
    Tap Other and then tap Add CardDAV Account
    For the Server you need to enter carddav.address.yahoo.com
    Now type in the Yahoo! ID (full email address) and password you use to sign in to your Yahoo! Contacts
    why not all in one? who knows!
    Ps. You might have to do several tries with and without the .xxx extesion to the account name
    Yahoo has multiples with att and all othr isp's

Maybe you are looking for

  • T500 and Windows 7.

    I have upgraded my T500 from Vista to Windows 7 ( 32 bit ) and everything went Ok but 2 issues : 1- I tried to instal Rescue and Recovery for Windows 7 ( 32 bit ) but it keeps showing an error message that there is a ( .tvt ) file missing . 2- I'm st

  • Use the authorization object while creating RFC

    Hi All, I'm able to create a RFC, can login from one sap system to another sap system and use the  following FM.  Here my concern is how to make the RFC more secure, i mean any user can access the target system with my login. Meanwhile came across a

  • SX40 poor quality videos

    My SX40 has never given very good videos, at any resolution.  I figured it was just the nature of the beast, but I have seen some demos recently on YouTube of videos from SX40 that are phenomenal.  It is 2 years old and never did work like I expected

  • How to search files by wildcard expression

    how to search files by wildcard expression, and list all of them? for example: search file as image*.jpg or ima231*.jpg. please give me some code to study. thanks in advance.

  • CS4 Crash 8Kb bug related

    Dreamweaver crashes repeatedly. Believe the problem is related to the 8 kb bug. Have found several files with size  8 192 kb. Actual file size is less and differs but File size on disk always 8 192 kb. Most, but not all, new saved html-files get this