Attaching Files To Emai With iPhone

I know that you can't text pictures or audio files with the iPhone, but I read you can send them via the iPhone's email. When I go to compose an email it does not have any way for me to attach a file, what am I doing wrong? Can someone please tell me how to attach an audio file to an email and send it using my iPhone? Thanks.

The iPhone uses a different format than other phones for ringtones and blocks sending any music file.
But there is nothing that would stop you from emailing your ringtones from your computer, and if you have not transferred them from your iPhone to your computer, and backed them up, you are flirting with the possibility of losing them.
The other option that is easily available to you is go back to your LG Vu if this capability is really important to you.

Similar Messages

  • Attach file to mail with "unusual" characters

    Hi
    I have made a procedure that can send mail with attached file/files. But when I attach a text file that contains characters like (Å, Ä or Ö) these characters gets like (A, A and ?) when I recieve the mail to my mail client. When I look at the file on the disk before I attach it the characters is OK but when I attach the file and mails it the characters get replaced. So why does the charaters get messed up when I attach the file to a mail??
    My procedure looks like this:
    procedure mail_files(from_name varchar2,
    to_name varchar2,
    subject varchar2,
    message varchar2,
    max_size number default 9999999999,
    filename1 varchar2 default null,
    filename2 varchar2 default null,
    filename3 varchar2 default null,
    debug number default 0) is
    mottagare VARCHAR2(2048) := to_name;
    v_smtp_server varchar2(32) := 'mail.telia.se';
    v_smtp_server_port number := 25;
    v_directory_name varchar2(100);
    v_file_name varchar2(100);
    v_line varchar2(1000);
    crlf varchar2(2) := chr(13) || chr(10);
    mesg varchar2(32767);
    conn UTL_SMTP.CONNECTION;
    type varchar2_table is table of varchar2(200) index by binary_integer;
    file_array varchar2_table;
    i binary_integer;
    v_file_handle utl_file.file_type;
    v_slash_pos number;
    mesg_len number;
    mesg_too_long exception;
    invalid_path exception;
    mesg_length_exceeded boolean := false;
    begin
    -- first load the three filenames into an array for easier handling later ...
    file_array(1) := filename1;
    file_array(2) := filename2;
    file_array(3) := filename3;
    -- Open the SMTP connection ...
    conn := utl_smtp.open_connection(v_smtp_server, v_smtp_server_port);
    -- Initial handshaking ...
    utl_smtp.helo(conn, v_smtp_server);
    utl_smtp.mail(conn, from_name);
    WHILE (mottagare IS NOT NULL) LOOP
    utl_smtp.rcpt(conn, get_element(mottagare));
    END LOOP;
    --utl_smtp.rcpt( conn, to_name );
    utl_smtp.open_data(conn);
    -- build the start of the mail message ...
    mesg := 'Date: ' || TO_CHAR(SYSDATE, 'dd Mon yy hh24:mi:ss') || crlf ||
    'From: ' || from_name || crlf || 'Subject: ' || subject || crlf ||
    'To: ' || to_name || crlf || 'Mime-Version: 1.0' || crlf ||
    'Content-Type: multipart/mixed; boundary="DMW.Boundary.605592468"' || crlf || '' || crlf ||
    'This is a Mime message, which your current mail reader may not' || crlf ||
    'understand. Parts of the message will appear as text. If the remainder' || crlf ||
    'appears as random characters in the message body, instead of as' || crlf ||
    'attachments, then you''ll have to extract these parts and decode them' || crlf ||
    'manually.' || crlf || '' || crlf ||
    '--DMW.Boundary.605592468' || crlf ||
    'Content-Type: text/html; charset=8859-1' || crlf ||
    'Content-Disposition: inline;' || crlf ||
    'Content-Transfer-Encoding: 8bit' || crlf || '' || crlf ||
    message || crlf;
    mesg_len := length(mesg);
    if mesg_len > max_size then
    mesg_length_exceeded := true;
    end if;
    utl_smtp.write_data(conn, mesg);
    --utl_smtp.write_raw_data(conn, utl_raw.cast_to_raw(mesg));
    -- Append the files ...
    for i in 1 .. 3 loop
    -- Exit if message length already exceeded ...
    exit when mesg_length_exceeded;
    -- If the filename has been supplied ...
    if file_array(i) is not null then
    begin
    -- locate the final '/' or '\' in the pathname ...
    v_slash_pos := instr(file_array(i), '/', -1);
    if v_slash_pos = 0 then
    v_slash_pos := instr(file_array(i), '\', -1);
    end if;
    -- separate the filename from the directory name ...
    v_directory_name := substr(file_array(i), 1, v_slash_pos - 1);
    v_file_name := substr(file_array(i), v_slash_pos + 1);
    -- open the file ...
    v_file_handle := utl_file.fopen(v_directory_name, v_file_name, 'r');
    -- generate the MIME boundary line ...
    mesg := crlf || '--DMW.Boundary.605592468' || crlf ||
    'Content-Type: application/octet-stream; name="' ||
    v_file_name || '"' || crlf ||
    'Content-Disposition: attachment; filename="' ||
    v_file_name || '"' || crlf ||
    'Content-Transfer-Encoding: 8bit' || crlf || crlf;
    mesg_len := mesg_len + length(mesg);
    utl_smtp.write_data(conn, mesg);
    -- and append the file contents to the end of the message ...
    loop
    utl_file.get_line(v_file_handle, v_line);
    if mesg_len + length(v_line) > max_size then
    mesg := '*** truncated ***' || crlf;
    utl_smtp.write_data(conn, mesg);
    mesg_length_exceeded := true;
    raise mesg_too_long;
    end if;
    mesg := v_line || crlf;
    utl_smtp.write_data(conn, mesg);
    mesg_len := mesg_len + length(mesg);
    end loop;
    exception
    when utl_file.invalid_path then
    -- All other exceptions are ignored ....
    when others then
    null;
    end;
    mesg := crlf;
    utl_smtp.write_data(conn, mesg);
    -- close the file ...
    utl_file.fclose(v_file_handle);
    end if;
    end loop;
    -- append the final boundary line ...
    mesg := crlf || '--DMW.Boundary.605592468--' || crlf;
    utl_smtp.write_data(conn, mesg);
    -- and close the SMTP connection ...
    utl_smtp.close_data(conn);
    utl_smtp.quit(conn);
    end;
    Any help is highly appreciated.
    Regards
    Nils

    Hi Madhu,
         Using the default modules PayloadSwapBean and MessageTransformBean you can able to send multiple attachments.
    swap.keyName  :payload-name or payload-description or content-type, content-description. swap.keyValue: If you have  a multiple attachments then give the multiple key value.
    Like you have payload name
      Attachment1, Attachment2 then
    swap.keyName  payload-name
    swap.keyValue  Attachment1, Attachment2
    Using the MessageTransformBean you can able to change the file name.
    PayloadSwapBean:
    [http://help.sap.com/saphelp_nw70/helpdata/EN/2e/bf37423cf7ab04e10000000a1550b0/content.htm]
    MessageTransformBean:
    [http://help.sap.com/saphelp_nw70/helpdata/EN/57/0b2c4142aef623e10000000a155106/content.htm]
    Regards,
    Prakasu

  • Internet Explorer - couldn't attach files for emai...

    In Internet Explorer, I tried to attach and send a file from my Lumia 800. But, after clicking the browse button for attaching file, there is no response. Is this the case with all or this could be resolved? 
    Regards,
    R.Manikanth

    Hi manikanth_r,
    Thank you for your post and welcome to the forums!
    Internet Explorer on Windows phone cannot upload files by design, like masterpeura mentioned. If you need to send attachments, it's recommended to use the phone email client. Please see here for instructions on how to set up an email account on your phone.
    Hope this helps,
    Puigchild
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • Cannot attach files in gmail with Firefox on 2 Macs

    Using firefox I cannot attached files on my desktop or laptop, but can in Safari

    Try allowing pop up windows
    Open Menu
    Options
    Content (on the top)
    Click Exceptions...
    Type mail.google.com in address of website area
    Click Allow
    Try to open attachment window now.
    Restart FireFox and try adding attachment again.

  • Cannot attach files to email with firefox 31

    using windows xp, firefox 31, gmail
    try to attach file to email, click on attachment icon (paperclip) and nothing happens. Not pop up, no error, nothing happens.
    Tried IE and everything worked fine, attached file no problem
    Have tried FF in safe mode - same problem
    Please help, I reeeeeaaaly do not want to use IE
    thanks

    Try allowing pop up windows
    Open Menu
    Options
    Content (on the top)
    Click Exceptions...
    Type mail.google.com in address of website area
    Click Allow
    Try to open attachment window now.
    Restart FireFox and try adding attachment again.

  • Can I attach files/screen prints with my posts?

    Hello,
    I have found SDN really useful as I try to learn how to use Netweaver to do J2EE development.
    One thing that would be really helpful sometimes would be the ability to attach files and/or insert graphics in the posts.
    Is this possible?
    Thanks in advance for any help.

    Hi David,
    have a look at the Topic: usage of Graphical Content in forum post?.
    Regards
    Gregor

  • Photoshop mix files not appearing with iPhone upgrade

    Hi,
    i have a new iPhone and the Photoshop mix files are not showing up with the app. I checked the usage from the old phone to the new one and the data is there. It just isn't being accessed by the app. The phone upgrade went from iOS 7 to 8. Also the app seems to know my login, it just isn't importing my data, which is there.
    is there anything I can do?
    thank you for any suggestions.
    Kathy

    Hi dj_paige,
    Thanks very much for replying.
    Unfortunately neither your's or ManiacJoe suggestions worked. Investigating further if I remove all Library Filters it appears amongst all the other photos. However if I then filter by keyword the original file appears but not the amended TIF file. This is despite the fact that the filter tells me that there's 39 photos but there are only 38 showing. Something is not getting updated at the right time.
    Any other ideas?
    Thanks for any help you can give.
    Paul

  • Cannot attach files on website with 64-bit Safari

    I am running the latest version of Safari on Snow Leopard, 64-bit. I, however, cannot attach and upload any files with it on any websites, such as Photobucket, Dropbox and even Gmail. When I chose a file, it just didn't pop up and start uploading. Is this just my problem?

    HI,
    You don't want to run Safari in 64 bit mode...
    Right or control click the Safari icon in the Applications folder, then click: Get Info In the Get Info window click the black disclosure triangle next to General so it faces down. Select 32 bit mode. Also, (in that same window) make sure Safari is NOT running in Rosetta.
    Carolyn

  • How to delete in iTunes for Mac some PDF files, previously synched with iPhone and then deleted from it?

    A while ago I synced some PDF files from my iTunes to my iPhone.  I've deleted those PDF files from my iPhone recently but now i'm trying to delete them from iTunes but can't.  How can this be done?
    P.S. Tried to select/highlight them (OK) and then to delete with cmd+Backspace - doesn't work 

    I am sure the URLConnection.defaultUseCaches is set before it is connected otherwise I should catch an IllegalStateException on conn.setUseCaches(false).
            try
                URL url = new URL("jar:file:/C:\\a.jar!/a.gif");           
             URLConnection conn = url.openConnection();
               conn.setDefaultUseCaches(false);
             conn.setUseCaches(false);
                Icon icon = new ImageIcon(url);
                System.out.println("icon size ? " + icon.getIconHeight());
                url.openConnection().getInputStream().close();
                System.gc();
             System.runFinalization();
                File file = new File("c:\\a.jar");
                while (file.exists())
                    file.delete();
                    try
                        Thread.sleep(10);
                    catch (InterruptedException ignored)
                System.out.println("file deleted.");
            catch (Throwable t)
                t.printStackTrace();

  • I have many PDF files in iBooks for iPad 2. How can I get those files to sync with iPhone 5?

    I Have many categories of my work brochures stored in PDF format in iBooks. iPad 2 running iOS 6. I'd like to be able to view those same PDF files on my iPhone 5. Is this possible to do over the iCloud ?
    i Cannot do it via iTunes because my MacBook is 10.5.8 and apparently is not capable of getting iTunes 10.7

    When I don't have my computer available, I do this by emailing the PDF to myself then open it from whichever device I need (open in iBooks)

  • ICloud Pages file not syncing with iPhone

    Hi,
    My iPad and Mac sync perfectly together, but my Pages documents on my iPhone 5 isnt syncing.
    I have tried turning the cloud off and on, on my iPhone, and opening and closing docs which sometimes forces the docs to update, but still no joy.
    If I login to iCloud.com, the docs are all correct, its just my phone which isnt up-to-date, any ideas why?
    Its running the latest iOS, not sure if its a bug or other, any thought peeps?

    In the end, I went into Settings > iCloud > Docs & Data, then switched it off. I got an option to delete the files off the iPhone but keep them in the cloud, this I wanted.
    When I switched it back on, it seemed to download the latest batch of docs I had, and since then appears to be syning too.
    Clearly a bug somewhere, but so far, this is the first time I have had an issue since the cloud launched so thats not too bad.

  • How to access pdf files on icloud with iphone

    Does anyone know how to access pdf files on icloud when saved to icloud on a mac?

    At the moment, you can't.  A favourite complaint.  Hopefully, the situation will change in the near future, but only Apple knows when or if.

  • [HELP] Send email with attachment  files from application server

    How can i send email to users with pdf/xls attachment files through job with pl/sql , but the files are on application server.
    I've tried using UTL_MAIL but it's not working, cause the file & DIRectory setting should be inside of database server. Should I copy the files from report server to database file system or any other techniques so there's no need to use the physical files?
    Please help!
    Thank you

    Hi,
    Thanks for your help, hoek & alvinder...
    I've tried the java send mail suggest by alvinder, and i got an error if i fill the Sender parameter with AutoMail :
    status:1 javax.mail.SendFailedException: Sending failed;
    nested exception is:
         javax.mail.MessagingException: 553 5.5.4 <AutoMail>... Domain name required
    Then i changed the Sender with valid email address :
    status:1 javax.mail.SendFailedException: Sending failed;
    nested exception is:
         javax.mail.MessagingException: 501 5.1.8 Domain of sender address [email protected] does not exist
    What could be wrong with this? Please help me... since i dont understand java programming :)
    I 'm still trying to find out
    Thank you very much

  • Attaching files to forum thread

    Please forgive me for asking a general question, but does anyone know if you can attach files to forum threads? If you can, how does one do that?
    Thanks

    Hi,
    Check the following thread :
    Re: Can I attach files/screen prints with my posts?
    It's really easy to post your screenshot somewhere else on the web and link to it, if plain text is not enough.
    Regards,
    Jitin
    SAP Business One Forum Team

  • After upgrading to ios6 my iphone will not open .xls files in emails with the default viewer. Is there a fix for this? The same emailed .xls files still open on my ipad using ios5 while viewing email like they did on my iphone prior to upgrading.

    After upgrading to ios6 my iphone will not open .xls files in emails with the default viewer. Is there a fix for this? The same emailed .xls files still open on my ipad using ios5 while viewing email like they did on my iphone prior to upgrading. I have no special software like numbers or anything else installed on either device. Just using the default viewer provided by apple for viewing email.

    The attachment is an .xls excel 97-2003 spreadsheet. I viewed the file in the email and did not edit it with any software. I can forward the file to anyone that is may want to check it out to see if they can help me. I was wondering if there was some way of forcing another ios6 install on my phone and maybe that would solve it.
    Is there anyone out there that is viewing .xls files in email using ios6 w/o any other software installed like numbers or any other add ons? I am not upgrading my ipad from ios5 to ios6 so I can still continue to view the emails on my ipad. Is there an email viewer .xls plug-in that will be availablle in the next ios6 update?

Maybe you are looking for