How can i send picture (attachment) with a direct wew in my message

comment puis-je voir directement les images que j'envoie par par Mail Icloud et que les récipiendaires puissent les voir directement

yes, thanks but now my problem is in my function associated
to this link :
function SendPost()
var toto="toto";
getURL("
http://127.0.0.1/board/scheduledfirst.php",
"_blank", "GET");
The function is executed but after in php i can get anything
with echo ($_GET["toto"]); echo ($_POST["toto"]);
Why ?

Similar Messages

  • How can I send a text with a picture attachment on my new iPhone5c?

    How can I send a text with a picture attachment on my new iPhone5c? It won't send or recieve!!.

    Does your carrier support it?
    Follow the steps in this guide.
    http://www.imore.com/how-send-photo-using-imessage

  • How can I send pictures not embedded, but as an attachment? THX

    How can I send pictures not embedded, but as an attachment? THX

    I had the same problem. I closed  the message, tried again selecting the correct imessage contact number and it worked.
    I'm guessing I first selected a non-imessage phone number and it got stuck in a gray/can't send mode (bug).

  • How can I send pictures to all phones by text with my Iphone 4s? I just can send pics among iphones

    how can I send pictures to all phones by text with my Iphone 4s? I just can send pics among iphones

    Do you have MMS Messaging turned on? Settings>Messages>MMS Messaging = ON.
    Cheers,
    GB

  • How can I send pictures or email from my desktop to a cell phone?

    How can I send pictures or email from my desktop to a cell phone?
    I use Gmail for my emails.

    By sharing playlists you mean sending the list of song titles along with the songs themselves you can't.  That would violate Apple's contracts with the studios regarding sharing music, videos, books, etc.  Which is strictly forbidden. With the single exception that I am aware of which is Home Sharing.
    If you just want to share the list of song titles you could take a screen shot and email that.  Hold down the home button and press and release the power button.  The image is then stored in your camera roll.

  • How can I send pictures from my I-phone to the photo stream on the I-pad

    How can I send pictures from my I-phone to the photo stream on the I-pad

    You need to have them both on the same iCloud ID with photo stream ON both devices.  Then when you take a photo with one device it will be sent to photo stream on the other device.  Pictures already taken before enabling photo stream will not be transferred.

  • How can i send pictures from iphoto and use entourage

    how can i send pictures from iphoto and use entourage. I use to do it when I used Mac OS Leopard

    Click on the image in question and execute COMMAND D which will copy an image in iPhoto.
    To delete an image in iPhoto, execute COMMAND DELETE.
    Ciao.

  • How can i send an email with subject more than 50 char.

    Hi
    Can you please explain How can i send an email with subject more than 50 char?? I am using Cl_BCS=>SET_MESSAGE_SUBJECT but it is throwing an error " An exception of the type CX_SY_REF_IS_INITIAL has occured which is not caught" .
    Regards
    Alok

    Try using the following FM
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = i_mail_data
            put_in_outbox              = c_x
          TABLES
            packing_list               = i_objpack[]
            object_header              = i_objhead[]
            contents_bin               = i_objbin[]
            contents_txt               = i_objtxt[]
            receivers                  = i_receivers[]
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
          OTHERS                     = 8.
    Regards
    Avinash
    Edited by: Avinash Jagtap on Dec 2, 2009 7:00 AM
    Edited by: Avinash Jagtap on Dec 2, 2009 7:02 AM

  • How can I upload pictures received with iChat to my Mac

    how can I upload pictures received with iChat to my Mac

    Hi,
    I am not sure what you mean.
    As Files they are sent in Chats (pic-in-chats) and displayed in-Line.
    Or they are sent as Separate Files, invoking the File Transfer Invite Window and you can "Accept' (Download) to the iChat Downloads folder.
    If an Active chat has a Pic in it, the pic can be dragged to the Desktop.
    Older Chats, if Saved, can also have Pics "grabbed" from them when opened.
    To be using an iChat version you need to be using OS X 10.7.x (Lion) or Earlier.
    Mountain Lion has Messages. This adds the iOS style iMessages account to what iChat can do.
    Pics can be "Saved" to the Desktop the same way.
    9:36 PM      Thursday; August 22, 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

  • How can I send e-mail with attachment from oracle 10g?

    How can I send email with attachment from oracle 10g?

    hi you can achieve the same thing from database tier of unix.

  • How can I send an attachment ?

    hello,
    i'm new into java programming and at the moment i 'm making an email programme.
    i explain how it works:
    i've got an asp application and when everything is filled in (the user can schedule its email to whenever he wants it to be send), it writes everything to the database.
    there is a programm (Java code) installed on the exchange server that controls if there are messages to be send.
    if there is, it gets everything out of the database to send the message.
    i don't have any idea how to send an attachment with the email..... hope somebody can help me!!!!!!!!!!!!
    allready thanks for your time!

    Is this for your e-mail? What program are you using to obtain your e-mail if this is the case? Are you using something such as Outlook Express, Windows Mail, Windows Live Mail, or are you using your Web Browser?
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • How can i send xml file with a http servlet request

    Hi
    Please tell me how can I send a xml file into http servlet request.
    I have a servlet(action) java file.From this servlet I have generate a xml file. Now I need to send that xml file to another servlet with http servlet request object.
    Dave.

    When you say you have generated an XML file what do you mean?
    Is it a file stored on disk? Then pass the file path as a string to the servlet.
    Is it stored in memory as an object? The pass a reference to the object to the servlet.
    Or are you asking how to communicate between servlets?
    Look in the JavaDocs for the RequestDispatcher class. You can use this class to forward the request to another servlet. Data can be passes using the RequestDispatcher by storing it as attributes using the request getAttribute and setAttribute methods. Also described in the JavaDOcs.
    http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/RequestDispatcher.html

  • HT4211 How do I send pictures taken with i Phone to my computer?

    How do I send pictures from my i phone 5 to my pc?

    http://support.apple.com/kb/ht4083

  • How can I send an article in the news as a text message?

    I would like to send a article in the news to a friend but not sure on how I can do that. Like how can I send a link to my friend?

    Hello there,
    You can copy and paste the URL and send it via SMS. https://support.mozilla.org/en-US/kb/how-do-i-copy-and-paste-text-android
    For other sharing options follow these steps: https://support.mozilla.org/en-US/kb/how-do-i-share-things-firefox-android
    Hope this helps!

  • How can i open a attachment with the fileextension .note sent from an Ipad

    A friend of mine sent me an email from his Ipad with an attachment which has the extension .note. How can I open this file on my Mac?

    It appears that this extension is related to the ipad app 'notability'. It would have to be exported as a pdf or rtf file to be opened.
    You can do some googling, but might be better if the sender converts the file to something more common and sends again.

Maybe you are looking for