Sending email via android email client from Air application

Hello!
I'm creating an Air application for Android and was wondering if it's possible to send an email via the android/gmail client within the application.
Thank you for any help or direction in advance
sjhitta

Hi Jari,
Thanks to reply me.
There is an workspace details where user solve that problem but now i have troed to access that workspace but its not working .i have cofusion how can i do this where i put
apex_mail.send(
p_to => v_recipient_list
, p_from => v_from_list
, p_subj => 'Hello world'
, p_body => v_body
, p_replyto => null);
this package
and how to and where set SMTP of Gmail and i don't know about gmail SMTP Server Specification
i ahve jus create a form with
P1_TO Text Field
P1_SUBJECT Text Field
P1_FILE_BRE File Browse...
P1_COMMENT Textarea
Please guid me...how can i do that step by step
Thanks

Similar Messages

  • I can no longer receive or send email via my Yahoo account  from my iphone6.  I've downloaded several "help guides" from the internet and tried them, including deleting the Yahoo account and re-adding it via imap.  But nothing seems to work.  Any ideas?

    I can no longer receive or send email via my Yahoo account from my iphone6.  I've downloaded several "help guides" from the internet, deleted and re-added the account via imap settings.  Nothing seems to work.  Any ideas?

    Use the yahoo app if available?

  • My messaging app on my OS X Mavericks is disconnected from my iPhone number. It now sends messages via my email. How do I switch it back?

    I had to reset my password through my phone in order to download an app since I forgot my password. But now when I go to message other iPhones through the messaging app on my MacBook Pro, it sends them via my email. I thought I reconencted my account and phone and computer when I logged into my computer and it prompted me to. What's happening? How do I change it back to sending messages with my phone number?

    Hi,
    In Messages > Preferences > Accounts and th iMessages account (on the Mac) you should see the options for Receive At.
    IS the iPhone Number one of these ?
    Is it ticked to be Enabled ?
    You can also set Send From at the drop down at the bottom (when you have twor choices or more in the Receive At list).
    IF the iPhone Number is missing check the iPhone > Settings > Messages.
    Does this list the Apple ID ?
    Is it an Enabled option to Send and Receive messages ?
    If it is not there or not enabled (or Enabling it does not achieve anything) then Remove the Apple ID.
    Place the iPhone in Airplane mode for a few minutes (Break with all the servers)
    On returning to the Messages Settings check the iPhone number appears to be Enabled (it will be greyed out as a choice you can change)
    Add back the Apple ID.
    Restart the mac Version.
    Accept the pop ups that tell you the iPhone is using it's Number and the Apple ID
    10:00 pm      Thursday; January 2, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     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

  • How  convert a report out put to pdf and sending it via an email

    Hi all,
            i have convert the sap list or report output to a pdf file then i have to send it via an email that is given in the selection screen. if anyone knows the solutions for this please make it soon. i will be very thankful.
    Thanks & Regards,
    Poorna

    generate spool request of ur report output and execute the standard program RSTXPDFT4 with tht spool reuest.it will download it in PDF format on ur PC and to send it via mail as attachment ,just copy this below code -
    *& Report  ZGILL_SENDMAIL_PDF                                          *
    REPORT  ZGILL_SENDMAIL_PDF                      .
    INCLUDE ZGILL_INCMAIL.  "SEE BELOW FOR INCLUDE PROGRAM CODE.
    DATA
    DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : file_name TYPE string.
    data : path like PCFILE-PATH.
    data : extension(5) type c.
    data : name(100) type c.
    SELECTION SCREEN
    PARAMETERS : receiver TYPE somlreci1-receiver lower case DEFAULT '[email protected]'.
    PARAMETERS : p_file LIKE rlgrap-filename
    OBLIGATORY DEFAULT 'C:\TEMP\SALARY_SLIP1.PDF'.
    AT SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CLEAR p_file.
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
    file_name = p_file.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM ml_customize USING 'Tst' 'Testing'.
    PERFORM ml_addrecp USING receiver 'U'.
    PERFORM upl.
    PERFORM doconv TABLES itab objbin.
    PERFORM ml_prepare USING 'X' extension name.
    PERFORM ml_dosend.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    FORM
    FORM upl.
    file_name = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = file_name
    filetype = 'BIN'
    TABLES
    data_tab = itab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    path = file_name.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    complete_filename = path
    CHECK_DOS_FORMAT =
    IMPORTING
    DRIVE =
    EXTENSION = extension
    NAME = name
    NAME_WITH_EXT =
    PATH =
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5
    ENDFORM. "upl
    *********************iNCLUDE pROGRAM********************************************
    *&  Include           ZGILL_INCMAIL                                    *
    Data
    DATA: docdata LIKE sodocchgi1,
    objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
    objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
    objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objhex LIKE solix OCCURS 10 WITH HEADER LINE,
    reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA: tab_lines TYPE i,
    doc_size TYPE i,
    att_type LIKE soodk-objtp.
    DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
    FORM
    FORM ml_customize USING objname objdesc.
    Clear Variables
    CLEAR docdata.
    REFRESH objpack.
    CLEAR objpack.
    REFRESH objhead.
    REFRESH objtxt.
    CLEAR objtxt.
    REFRESH objbin.
    CLEAR objbin.
    REFRESH objhex.
    CLEAR objhex.
    REFRESH reclist.
    CLEAR reclist.
    REFRESH listobject.
    CLEAR listobject.
    CLEAR tab_lines.
    CLEAR doc_size.
    CLEAR att_type.
    Set Variables
    docdata-obj_name = objname.
    docdata-obj_descr = objdesc.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addrecp USING preceiver prec_type.
    CLEAR reclist.
    reclist-receiver = preceiver.
    reclist-rec_type = prec_type.
    APPEND reclist.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addtxt USING ptxt.
    CLEAR objtxt.
    objtxt = ptxt.
    APPEND objtxt.
    ENDFORM. "ml_customize
    FORM
    FORM ml_prepare USING bypassmemory whatatt_type whatname.
    IF bypassmemory = ''.
    Fetch List From Memory
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = listobject
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    COMPRESSED_SIZE =
    TABLES
    in = listobject
    out = objbin
    EXCEPTIONS
    OTHERS = 1
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    Header Data
    Already Done Thru FM
    Main Text
    Already Done Thru FM
    Packing Info For Text Data
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'TXT'.
    APPEND objpack.
    Packing Info Attachment
    att_type = whatatt_type..
    DESCRIBE TABLE objbin LINES tab_lines.
    READ TABLE objbin INDEX tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = whatname.
    APPEND objpack.
    Receiver List
    Already done thru fm
    ENDFORM. "ml_prepare
    FORM
    FORM ml_dosend.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X' "used from rel. 6.10
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    CONTENTS_HEX = objhex
    OBJECT_PARA =
    object_parb =
    receivers = reclist
    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
    IF sy-subrc <> 0.
    MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    WITH docdata-obj_name.
    ENDIF.
    ENDFORM. "ml_customize
    FORM
    FORM ml_spooltopdf USING whatspoolid.
    DATA : pdf LIKE tline OCCURS 0 WITH HEADER LINE.
    Call Function
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = whatspoolid
    TABLES
    pdf = pdf
    EXCEPTIONS
    err_no_otf_spooljob = 1
    OTHERS = 12.
    Convert
    PERFORM doconv TABLES pdf objbin.
    ENDFORM. "ml_spooltopdf
    FORM
    FORM doconv TABLES
    mypdf STRUCTURE tline
    outbin STRUCTURE solisti1.
    Data
    DATA : pos TYPE i.
    DATA : len TYPE i.
    Loop And Put Data
    LOOP AT mypdf.
    pos = 255 - len.
    IF pos > 134. "length of pdf_table
    pos = 134.
    ENDIF.
    outbin+len = mypdf(pos).
    len = len + pos.
    IF len = 255. "length of out (contents_bin)
    APPEND outbin.
    CLEAR: outbin, len.
    IF pos < 134.
    outbin = mypdf+pos.
    len = 134 - pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF len > 0.
    APPEND outbin.
    ENDIF.
    ENDFORM. "doconv
    **********************INCLUDE END********************************

  • User to User file transfer via FMS or RED5 in AIR application.

    Hello!
    It is possible to make file transfer from air application via server?
    I think need to create like byte array streaming or somethink like this from sender and write the destination file on receiver user pc.
    Someone know how to do this? It is possible?
    Thanks.

    Search more on socket class you can send anything between two machines using them
    see the code snippet below:
        sc = new Socket("<IP address>",8000);
      sc.connect("<IP address>",8000);
      sc.addEventListener(ProgressEvent.SOCKET_DATA, readFromServer);
      sc.writeUTFBytes("Hi this will be sent to the IP address provided by you on port no 8000!\n");
      sc.flush();

  • Just updated to Photoshop Elements 12 and am unable to send photo via Adobe email.service. I am unable to get a verification code via email to be able to continue the email transmission.

    How do I get a verification code which I need to send photo via email from Photoshop Elements 12?  Instructions say that I'm to receive verification code via email but none arrived.

    Thank you very much.
    AL
    From: Bill Hunt [email protected]
    Sent: Tuesday, January 28, 2014 2:22 PM
    To: aladvantage
    Subject: Photoshop elements 12 Unable to get the
    sharing (email) to work.
    Re: Photoshop elements 12 Unable to get the sharing (email) to work.
    created by Bill Hunt <http://forums.adobe.com/people/the_wine_snob> in
    *Premiere
    Elements* - View the full
    discussion<http://forums.adobe.com/message/6061690#6061690

  • I am sending mails to a particular domain from MVC3 application, more details below Is there any server settings for the same?

    From MVC3 Application, There is mail functionality it works well but if in TO address if I am including a recipient mail of external domain mail is sent but taking long time. and If I am using same mail id with an another mail id it works immediately.
    Could you please advice the resolution?
    Bhanu Prakash K

    Hi Bhanu Prakash K,
    Did you mean that send email to an external domain email account slowly via MVC application? However, when
    send to an internal email account, will work
    immediately?
    Based on your description, this issue seems to be more related to MVC application. I suggest you should post
    this question in ASP.NET Model-View-Controller (MVC) Forum. I believe we will get a better assistance there.
    If any update or anything I misunderstand, please don't hesitate to let me know. 
    Best regards,
    Justin Gu

  • Drag and drop file into Outlook from AIR application

    I am hoping to see if this would be possible with the Adobe AIR API. We currently have a desktop AIR application that clients install in order to facilitate certain operations triggered via a web application (such as opening files directly from the web).
    One of the actions we are requested to support is the ability to drag and drop files from our web application directly into Outlook and have the file added as an attachment. I saw the documentation at Adobe Flash Platform * Dropping file promises and was wondering if this might be a possibility, or if there was some other method of performing this.
    We are trying to get around the fact that users now have to download a document to their desktop before being able to attach in Outlook.
    Thanks for any assistance.

    You just aren't calling the right NativeDragManager functions. See http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7d83.html

  • Send email iOS/Android component for Adobe Air

    Hi guys!
    I want to create an app that sends an image through mail. What options do I have for a global approach for iOS and Android?
    Would you suggest instead uploading the image to a server? Would it be easier to have a solution for both platforms?
    Thanks in advance!

    There are a few ANEs that can do this, and more. I use GoViral from Milkman Games:
    http://www.milkmangames.com/blog/tools/

  • Can't send pictures via exchange email

    I just got my Galaxy S III.  I also have a Galaxy Note(1st gen).  The SIII is a lot faster in all aspects. 
    I'm having one issue though.  I am unable to email any pictures using my Corporate Exchange email account.  It just gets stuck in the Outbox and I get a notification that the email failed to send.  I can send other types of files as attachements.  I am able to send a picture using my hotmail account.  On my Note I am able to send pictures from my exchange account.
    Is their another setting in android that blocks this?  I've checked but I can't find one.

    I am having this issue with trying to send pictures from my email applications in my phone. I use Yahoo, but not the Yahoo app. I also tried to use my work email to attach the picture to and send. In both instances, Yahoo and work email, I get a "Failure " message in my outbox of the email application when I look to see if the photo sent. I have received pictures via text before, no problem. I also tried turning of bluetooth, even though where I am currently located there is no wifi/bluetooth to connect to.
    Thanks

  • ICal Server sends invitations via external email but no RSVP

    I have set up a fresh install of Mavericks Server (10.9.3) running DNS and OD Services and now enabled iCal Server.
    I setup invitation of external users via an external email address and  invitations get sent and delivered via email just fine so I guess plus-addressing must be supported by the mailserver.
    However the invitations do not show the RSVP requests and do not automatically get picked up by Calendar.app.
    The server sits behind a NAT router and runs its own Split-DNS setup for the same local domain myserver.xyz.com that the router also redirects to the internal IP address of the server for external access to the iCal Server (so, FQDN is working for the server). The email account used for invitations is hosted on an external mailserver that runs on the same domain (mail.xyz.com).
    Did I miss anything in my setup?
    Thanks for any input.
    Pete

    Okay, got this figured out. Appears that the email server my client's company uses is terminating the connection when the Xserve tries to do anything. I setup a test Gmail account and used those settings instead and everything worked just fine.

  • [E71] Cannot directly send photos via Nokia Email ...

    Device: Nokia E71, firmware: 400.21.013
    Hello,
    Why is it not possible any more to directly send your photos via the Nokia Email Messaging tool?
    I have this problem since the latest firmware upgrade of November 2009. I think it has something to do with the supporting software via Nokia Ovi Suite or Nokia PC Suite...
    New situation with firmware version 400.21.013 
    Old situation with firmware version 300.21.012
    Thanks in advance!
    Message Edited by sqck on 04-Dec-2009 12:04 AM
    FW: 500.21.009
    Solved!
    Go to Solution.

    Indeed, the standard e-mail app works perfectly. However, Nokia Messaging should also work. Why has this changed since the latest firmware upgrade?
    hadimassa wrote:
    I can use the e-mail link on my E71 but I don't use Nokia Messaging, just the standard e-mail app.
    I think my problem is a new bug. 
    Update 7-12-2009: Good news: the Nokia Messaging team will investigate this problem :-)
    Message Edited by sqck on 07-Dec-2009 10:37 PM
    FW: 500.21.009

  • IPhoto won't send photos via 'share-email'

    iPhoto has stopped sending my pix through 'share' 'email' -- Worked fine, just quit. All other email messages coming and going fine via 'Mail.'
    Dialogue box appears:
    "Your email did not go through because the server did not reply."

    iPhoto Menu -> Preferences -> Accounts ->
    Delete and recreate your email settings.
    Alternatively, use Apple's Mail for the job. It has Templates too - and more of them.

  • My iPhone is sending messages via my email. It is sending a link to various people in my contacts list. Is this a problem with my phone or my email?

    I'm not sure if this is a problem with my phone or with my email account.

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Try this First...
    Close All Open Apps...  Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first..

  • Is there a way of sending photos via iMessage on my macbook air?

    Am I missing something really obvious?! There doesn't seem to be an option on iMessage via Macbook air to attach and send a photo / video.  My iphone works fine for this. Help?

    Hi there. I had 1 connection problem with wifi a few days after I bought my mac. But I just turned my router off and on again and it's worked perfectly since! You do get free phone support for a few months after purchasing and they help you out a lot. I wouldn't say macs have a wifi issue from my experience.

Maybe you are looking for

  • Shaky still images in burned iMovie/iDVD project

    Hello all, I've stopped by the discussion forums in the past for quick fixes to problems when they come up, this is my first post though that doesn't seem to address anything I've found on here... I am working on a project that takes scanned pictures

  • Confuguration of DMS using an external content server and KPRO

    Hello all, I am working in a new EH&S SAP environnement. The aim is to configure a DMS to link EH&S with an external content server Documentum using Kpro. I have done the following IMG activities: - Specify Content Servers (Tcode: OAC0) - Maintain Ca

  • ICO Synchronous messages failure

    Hi Experts, I have an ICO configured synchronous scenario..SOAP Sender  (3rd party system) - PI- SOAP Receiver (ECC), ABAP Proxy is generated on ECC. Messages were flowing successfully till yesterday but today messages are failing with the below erro

  • Can CS5 open CS 5.5 files?

    Can I open 5.5 files (InDesign specifically, but others too) in CS5?

  • Thread safety II

    Is it safe to use clones of a document in multiple threads? Gj null