File or Pictures attachment in Mail

Is it possible to attach a file/files or multiple photos in a single email using iPhone 3G?

You can select a single photo only to be sent with a new email message.

Similar Messages

  • Picture attachment in mail

    why when I attach a picture to a Mail email it becomes embedded within the email and PC users can't download it?
    Richard

    That is mac mail.
    Actually when you attach jpg files, there is a nice feature that you can adjust the size of the picture via the drop down menu on bottom right of the message. I like that a lot.
    As regards PC users, from your menu edit>Attachments and in sub menu, select windows friendly and attach at end of message.
    Also, in your preference, make sure to select plain text under compose panel.
    Try and see if this helps. Cheers.

  • Smart Forms - Attaching HTML file as an attachment in Mail

    Hai,
    I have following requirements. I have to send the Payment Advice document output as a HTML format to the vendors.
    I am able to get the smartforms output as html file. The output of smartforms i am capturing
       call function '/1BCDWB/SF00000170'
          exporting
            control_parameters = w_control_parameters
            output_options     = w_output_options
            user_settings      = 'X'
            w_t001             = w_t001
            w_reguh            = w_reguh
            w_regud            = w_regud
            w_e1idrs1          = w_e1idrs1
          importing
            job_output_info    = w_job_output_info
          tables
            t_item             = t_item
          exceptions
            formatting_error   = 1
            internal_error     = 2
            send_error         = 3
            user_canceled      = 4
            others             = 5.
        w_xmloutput = w_job_output_info-xmloutput.
    *-SAP Smart Forms: Result of XSF Transformation
        w_htmldata  = w_xmloutput-trfresult-content[].
    Currently the w_htmldata informations are stored in the form of RAW 1024 characters.
    Using the below mentioned FM the attachment information i am passing through
           contents_txt               = it_message
    parameters.  The contents_txt support only 255 characters. But the smartforms returns RAW 1024 characters. When the HTML attachment is not showning the content properly and the data displays is misaligned. Kindly give me the suggestion how to overcome this issue !
      call function 'SO_DOCUMENT_SEND_API1'
          exporting
            document_data              = w_doc_data
            put_in_outbox              = 'X'
            sender_address             = ''
            sender_address_type        = ''
            commit_work                = 'X'
          importing
            sent_to_all                = w_sent_all
          tables
            packing_list               = t_packing_list
            contents_bin               = t_attachment
            contents_txt               = it_message
            receivers                  = t_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.

    Have you upgraded to Yosemite?  Then you could send the attachment using Mail Drop.
    You can use Mail Drop to send files that exceed the maximum size allowed by the provider of your email account. Mail Drop uploads the large attachments to iCloud, where they’re encrypted and stored for up to 30 days.
    If you have an iCloud account and you’re signed in to iCloud when you click Send, Mail automatically sends the attachments using Mail Drop. Mail Drop attachments don’t count against your iCloud storage.
    If you don’t have an iCloud account, or if you’re not signed in, Mail asks you whether to use Mail Drop (select “Don’t ask again for this account” to always use Mail Drop).
    If a recipient uses Mail in OS X Yosemite, the attachments are automatically downloaded and included in your message just like any other attachment. For other recipients, your message includes links for downloading the attachments and their expiration date.
    You can turn Mail Drop on or off for an account. Choose Mail > Preferences, click Accounts, select your account, click Advanced, then select or deselect “Send large attachments with Mail Drop.”

  • How do I send a large (23mb ) PDF file as an attachment in mail?

    How do I send a PDF mail attachment in mail that is greater than the crazy limit of 23MB?  Thanks for your help!

    Have you upgraded to Yosemite?  Then you could send the attachment using Mail Drop.
    You can use Mail Drop to send files that exceed the maximum size allowed by the provider of your email account. Mail Drop uploads the large attachments to iCloud, where they’re encrypted and stored for up to 30 days.
    If you have an iCloud account and you’re signed in to iCloud when you click Send, Mail automatically sends the attachments using Mail Drop. Mail Drop attachments don’t count against your iCloud storage.
    If you don’t have an iCloud account, or if you’re not signed in, Mail asks you whether to use Mail Drop (select “Don’t ask again for this account” to always use Mail Drop).
    If a recipient uses Mail in OS X Yosemite, the attachments are automatically downloaded and included in your message just like any other attachment. For other recipients, your message includes links for downloading the attachments and their expiration date.
    You can turn Mail Drop on or off for an account. Choose Mail > Preferences, click Accounts, select your account, click Advanced, then select or deselect “Send large attachments with Mail Drop.”

  • File with an Attachment to Mail with an Attachment

    I'm using File adapter and using additional Files option to attach another attachment. I have to send mail out using Mail receiver adapter and should use same attachment name File adapter picked up. I tried several options using MessageTransformBean, PayloadSwapBean etc with no Luck. mail going out to Goole and exchange server as Untitiled.txt . Im using Mail package as Receivers of the mail are dynamic. How can I sent Mail attachment with name dynamically set ?.
    Thanks for any help.
    Krish.
    Edited by: krishvamsi on Oct 15, 2010 1:44 AM

    There are several MIME headers that play a role in how the mail client retrieves the file name of an attachment. This behavior differs among various mail clients.  Some mail clients use the name parameter in the Content-Type header. While some other use the Content-Disposition or Content-Description value as the file name. To avoid potential interpretation problems, it is recommended to combine the use of these headers. Ideally, your mail header should look something like :
    Content-Type: application/text; name="myfile.txt";
    Content-Description: myfile.txt
    Content-Disposition: attachment; filename="myfile.txt";;
    Check whether the mail header generated by PI mail adapter sets all these MIME attributes.
    Regards,
    TK
    Edited by: Sameej T.K. on Oct 21, 2010 1:05 AM

  • Problem in opening an image file sent as attachment in mail

    Hi Friends,
    I have a requirement of sending a image file (.jpg) through email attachment.
    I am getting the attachment using the function module 'SO_NEW_DOCUMENT_ATT_SEND_API1'.
    But i am unable to open the file in the attachment. It is givin a message 'CAN'T DETERMINE TYPE'.
    Can you please provide me a solution .
    Regards,
    pooja

    Read the JPG file as Binary (TYPE BIN) in your read? and write it to the OBJBIN table?
    done in the OPEN
      REFRESH w_objbin.
      OPEN DATASET attach FOR INPUT IN BINARY MODE MESSAGE t_mesg.
      IF sy-subrc NE 0.
        WRITE:/ 'Attachment Dataset Open RC ',sy-subrc.
        WRITE:/ 'Message ',t_mesg.
        EXIT.
      ENDIF.
      DO.
        READ DATASET attach INTO wk_rec.
        IF sy-subrc NE 0.
          IF sy-subrc NE 4.
            WRITE:/ 'Attach Dataset Read RC ',sy-subrc.
            WRITE:/ 'Message ',t_mesg.
          ENDIF.
          EXIT.
        ENDIF.
        w_objbin-line = wk_rec.
        APPEND w_objbin.
      ENDDO.
      DESCRIBE TABLE w_objbin LINES w_tab_lines.
      LOOP AT w_objbin INTO wk_rec.
        APPEND wk_rec TO i_objbin.
      ENDLOOP.
    Edited by: Paul Chapman on Jun 5, 2008 10:46 AM

  • File adapter with attachment to mail

    Hi,
    I am working on a scenario where I want to attach a file that is not .txt or .xml along with my file sender adapter . This is, in turn ,received with a mail adapter and I want the attachment to come along with the mail.
    My question is, Is the attachment always in xml format, or can I receive it just as the it is.
    cheers,
    Prashanth

    Hi,
    About SOAP Adapters-
    Develop a Java Application, which reads SOAP Header/Attachments and Sends it as a Mail with attachment using JAVA Mail API. This application should be exposed as a WebService. And invoke this WebService from XI thru SOAP Receiever Adapter.
    Is your idea is sending file as attachment from Sender File Adapter, you need to get the attached file as an attchment in the Mail right ? If so you can try as I said.
    May be useful,
    Regards,
    Moorthy

  • PDF file to be attached in mail .Showing error in opening the Document .

    Hi ABAP Gurus ,
    Good Morning !
    I converted a smartform to PDF and sended to function SO_NEW_DOCUMENT_ATT_SEND_API1 to send a mail external...
    So, when I tried to open the file attachment, I can't open this file. and I watch a message : 'There was a error in opening the document . The file is damaged and could not be repaired '.
    In one of the earlier threds on www. sdn.sap.com i found a solustion which says to use class CL_BCS but I don't know how to use this class or rather use classes in ABAP Programs .
    I would be thankful if I am provided the sample code or some help regarding this issue .
    I think if somebody provides a solution on how to use function SO_NEW_DOCUMENT_ATT_SEND_API1 that would make me Relieved .
    Regards,
    D Singh

    Thanks Mr. Shehryar Shabbir & Mr. Vijay .
    SDN is not allowing to send email id .Plz share the code in SDN.COM .
    Regards ,
    D Singh

  • Problem in sending the file as an attachment through mail

    Hi,
    I have developed a Zreport. The functionality is like on executing this report it should send an e-mail with an attachment of the data in the xcel format.
    So, while execting this report in background mode in ECC 5.0, it is able to send the mail as an attachment but the file doesn't contain the data in it But, the same report while trying to execute in back ground mode in ECC 6.0, it is able to send the mail with the attachment and the file also has the data.
    So, my question is like are there any patches that has to be installed in ECC 5.0 system to get this successfully done.
    Thanks in advance for your answers.
    Rohith

    Hello,
    Are you using the standad sap function module or using OLE objects to generate excel?
    First try creating the excel file in foreground and see if the data is being populated.
    Kind Regards,
    Niky.

  • Still no picture attaching in Mail?

    I was hoping to see the possibility to attach a picture in Mail but still there is not. I know that I can go into my photos app and mail from there, but what if I am writing an email and then get the idea of attaching a photo from my library? I can't!

    just because i have to use windows machine at work, i found out that current "ms word" saves up to 30% of time by autocorrecting misspells and auto-capitalising first sentence letters.
    I wonder where you got that number from... out of your hiney, maybe? If you're a touch typist, as I am, typing a capital letter does not take appreciably longer than typing a lowercase letter, since you are pressing the necessary keys with opposite hands at the same time. OTOH, having to fix incorrectly auto-capitalized characters because there was a period in an abbreviation or something similar definitely takes extra time, no matter how you type. (I would not have the nerve to quote a statistic for how much extra time without having a study to refer to.)
    If you like it, fine, but don't try to argue that it's more efficient, because it isn't.

  • File attachement in mail adapter

    Hi ,
    I need to send users an error report which I have captured in the form of a file. Is it possible to attach this file as an attachement via mail adapter. I have been reading that the payload can be sent as attachment by specifying the interface namespace and interface name. But my requirement is to trigger the mail once the file has been completely written and not for every message. The reason being I could have 3000 records in the file and I dont want to send 3000 MAILS out but just 1 mail for the entire 3000 records...
    Thanks,
    Teresa

    Hi Teresa,
    I hope, I understand you right.
    When you use the file-adapter for sending the file, you can without mapping send this file out to a mail receiver as attachment, there is nothing special to do.
    Regards
    Stefan

  • Xml file to mail scenario with zip file as an attachment

    Hi experts,
    I have  a file to mail scenario. File is in xml format.
    At receiver side, first I want to zip this file and send the zip file as an attachment using mail adapter.
    How can i achieve this?
    Regards
    Divia

    Hi Shabarish,
    In the module tab i have specified the below beans
    localejbs/AF_Modules/MessageTransformBean                           contentType
    AF_Modules/PayloadZipBean                                                    zip
    sap.com/com.sap.aii.adapter.mail.app/XIMailAdapterBean           mail
    In the module configuration i mentioned as
    Transform.ContentDescription   file
    Transform.ContentDisposition   attachment:filename="file.xml"
    zip.filenameKey                      contentType
    zip.mode                                zipOne
    Now i am getting the mail with zip file as an attachment.But the name of the attachment i got is MainDocument.zip
    Even the file name inside the zip is MainDocument.xml.
    How can i specify my own file name for both zip file and the file inside the archieve folder.Please help me.
    Regards
    Divia

  • Attaching pictures to e-mail as jpeg

    I am trying to attach pics as  jpeg files to an outgoing e-mail using Apple Mail and they appear as pictures. I tried to select "Format-Make plain text", but the recipient (who has MS Outlook) says they came embedded as pictures. Any thoughts?
    Thanks,
    Randy

    You have to use attachment tamer
    http://lokiware.info/Attachment-Tamer
    Its free to try
    or right-click on the image and select view as icon from the pop up menu
    Or do not use HTML formatted mail

  • Can you copy/paste files from the Finder to Mail in Lion, or drag them onto the Mail icon in the Dock to create a new message and attach the files to it?

    Message title says it: Can you copy/paste files from the Finder to Mail in Lion, or drag them onto the Mail icon in the Dock to create a new message and attach the files to it?
    I can't find anything in the Knowledge Base that says these two options no longer work or still do.
    I do not have a system capable of running Lion, but I need to know the answer nonetheless.

    Gee, I don't know: "paste attachments mail Lion"? ;-)
    One further question, if I may: in Panther (which is where I've aggregated nearly 7 years of mail), if you copy more than one file in the Finder, switch to Mail, and paste the files into a new message, only the file names paste in. If you copy one file and paste it into a Mail message, you get the file, not just the name. Is that still true, or has that (IMHO) bug been fixed since 10.3.9?

  • How to send concurrent program output file as an attachment in the notification mail

    Hi All,
    We are on Oracle apps version - 11.5.10.2
    We have a requirement wherein we need to send the concurrent program output file as an attachment while sending the notification mail to the user.
    Currently we have tried the approach wherein we are specifying the user id in the OPTIONS tab (Notifying the following people) while submitting the concurrent program.
    But using this approach, the user gets only the URL of the output file in the notification mail and not the output file as an attachment.
    Kindly let us know if anyone has incorporated the logic to send the output file as attachment in the notification mail.
    Please Note - We do not want any custom code to be written to send the attachment.
    Any pointers to this will be helpful.
    Regards,
    Shruti

    Hi All,
    We are on Oracle apps version - 11.5.10.2
    We have a requirement wherein we need to send the concurrent program output file as an attachment while sending the notification mail to the user.
    Currently we have tried the approach wherein we are specifying the user id in the OPTIONS tab (Notifying the following people) while submitting the concurrent program.
    But using this approach, the user gets only the URL of the output file in the notification mail and not the output file as an attachment.
    Kindly let us know if anyone has incorporated the logic to send the output file as attachment in the notification mail.
    Please Note - We do not want any custom code to be written to send the attachment.
    Any pointers to this will be helpful.
    Regards,
    Shruti

Maybe you are looking for

  • Mirrored RAID degraded, upper slice shows "failed" but drive passes verify

    Hello, I have a mid 2010 Mac Mini running Mountain Lion and Server.  The Mirrored RAID is showing degraded and that the upper slice has failed.  However, doing a verify of the drive does not report any problems.  Is there a way to determine if this i

  • How to configure ActiveSync for a database table in IdM 7.0

    Hi All, Please suggest me the steps to configure ActiveSync in IdM 7.0. when i try it by resource-->activeSync wizard it gives "The ActiveSync Wizard has been deprecated in Identity Manager 7.0 in favor of using MetaView and the resource action "Edit

  • Unable to export Hive managed table using Oraloader

    Hi, I am using MySQL as Hive metastore and trying to export a Hive managed table using Oraloader. I get the following excpetion in Jobtracker: 2012-09-12 12:23:56,337 INFO org.apache.hadoop.mapred.JobTracker: Job job_201209121205_0007 added successfu

  • Widescreen 16:9 Dv-Pal

    I've found a simple solution about managing anamorphic 16:9 Dv-Pal clips in iMovie and iDvd. Thanks to Matti Haveri and Klaus1 for their basic indispensable suggestions. The problem. Big difficulties to stream in 16:9 hiQ, either files .dv saved into

  • Redacting tool for HP TRIM

    Hi, I'm looking for a redaction tool that works with HP TRIM. The existing TRIM redaction tool is really good, however, the TRIM document has to be in TIF format and all of our documents are in PDF format. Obviously, a TIF rendition could be made fro