How to attach image files to an email message?

I use Mac Mail. When I attach an image file to an email message, the recipient gets it embedded in the message and not as a separate attachment. I'm assuming that the recipient uses a Windows computer, and I always send Windows-friendly attachments. What do I have to do to ensure that attachments are not embedded in an email message?
Thanks.
David Heim

http://itunes.apple.com/us/app/azul-media-player-video-music/id406845187?mt=8

Similar Messages

  • How to attach a file to an email without using JavaMail

    hi everyone!
    I'm trying to develope a program wich has to send email messages with attached files. Specifications say that I can't use JavaMail. So I'm trying to use SMTP. It's a very simple protocol, but I haven't found how to send attached files.
    Any suggestion or source code? Thanx Very much!!!

    you will need to add a mime body to the data as done in the example message (i found it somewhere on teh internet so don't blame me for erors in it ;) )
    MAIL FROM:<[email protected]>
    RCPT TO:<[email protected]>
    DATA
    Mime-version: 1.0
    Content-Type: multipart/mixed; boundary=OpenVMS/MIME.572522828.951855
    Content-Transfer-Encoding: 7bit
    Message-ID: <572522828.0@>
    --OpenVMS/MIME.572522828.951855736
    Content-Type: text/plain; charset=ISO-8859-1
    Content-Transfer-Encoding: 7bit
    Content-Disposition: inline
    We have modified this to send with SFF for SMTP - TCPIP
    Services for OpenVMS.
    --OpenVMS/MIME.572522828.951855736
    for info about how to use mime look at the RFC of mime (just do a google search)
    Robert

  • How to attach a file to an email in EMOD

    People
    I can place an hiperlink to a file emails from email marketing on demand.
    What my people wants is to attach a file.
    Is this possible???
    Thanks in advance for your help
    Ruben Abuin

    Well you have to put this file in your hosting library and then link to this item in your message. Thereby you are not flodding your contact's email box at the same time the message gets delivered. Now the challenge is you have manage the size of these attachments and determine how long you want to keep these files in your library

  • How to attach a file in an email

    Is it possible to attach a file before sending an email on iPad ?

    You can not send attachments from Mail, but must use an app that allows you to share or send the material as an email.
    Some apps allow you to "share" content by opening Mail and adding the material as an email message. Some apps will allow you to copy material to temporary memory, then open Mail, place block the material you want to add, and then paste the content to your email message.

  • Attaching music files to an email message

    Can anyone tell me how to attach a music file from my iTunes library to an email message? Also, I would like to convert the file so that it can be played on a PC? Thanks for any assistance.

    1. You can control+click on the song you wish to attach. After you do this, a menu window will open select "show in finder."
    2. You can then drag and drop this to your mail application. A new message will automatically be started with the music file attached. If you are using an online email program, showing in finder lets you see exactly where the file is. You can then navigate to this in the email program.
    Unless the song is protected, you can convert the song to MP3 format. It should then be playable on a Windows machine

  • How do I attach a file to a mail message with my new iPhone?

    My daughter wants to know how to attach a file to a mail message and even send a file from iCloud to someone via iPhone mail.
    How do we do that?
    Thanks,
    Rookie

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access web mail, you need to seek support from your service provider or a forum for that service.
    If your problem is with Thunderbird, see this forum for support.
    http://www.mozillamessaging.com/en-US/support/https://addons.mozilla.org/en-US/firefox/browse/type:3https://addons.mozilla.org/en-US/firefox/browse/type:3
    or this one
    http://forums.mozillazine.org/viewforum.php?f=39

  • Text format + attached image files or Html format + displayed images ?

    Hi, I have this kind of probleme and I need some help.
    (Code : see below)
    I want to send a mail with some attached image files.
    For the message part, I create a MimeBodyPart and add two kinds of message (text or html) and this part is multipart/alternative.
    For the attachment part, I create another MimeBodyPart and I set the Header like this : xxx.setHeader("Content-ID", "<image>").
    When I use outlook (html format) , I receive a mail with the picture displayed at the bottom, it's perfect.
    However the problem is for the mailbox which is in text mode, I receive a mail with message + attachment files, but I also have some image frames generated by xxx.setHeader("Content-ID", "<image>") I guess.
    Who can give me a hand to implement something that able to make difference according to text format or html format.
    I post my code here, thanks a lot :
    //set Message
         msg.setText(pMsgText, DEFAULT_CHARSET);
         // Partie Texte brut
         MimeBodyPart textPart = new MimeBodyPart();
         String header = "";
         textPart.setText(header + pMsgText, DEFAULT_CHARSET);
         textPart.setHeader(
                   "Content-Type",
         "text/plain;charset=\"iso-8859-1\"");
         textPart.setHeader("Content-Transfert-Encoding", "8bit");
         // Partie HTML
         MimeBodyPart htmlPart = new MimeBodyPart();
         String images = BTSBackUtil.generateImgSrc(pictureContainers.length);
         String endPart = "</div>\n</body>\n</html>";
         htmlPart.setText(pMsgTextHTML+images+endPart);
         htmlPart.setHeader("Content-Type", "text/html");
         // create the mail root multipart
         // Multipartie
         Multipart multipart = new MimeMultipart("mixed");
         // create the content miltipart (for text and HTML)
         MimeMultipart mpContent = new MimeMultipart("alternative");
         // create a body part to house the multipart/alternative Part
         MimeBodyPart contentPartRoot = new MimeBodyPart();
         contentPartRoot.setContent(mpContent);
         // add the root body part to the root multipart
         multipart.addBodyPart(contentPartRoot);
         // add text
         mpContent.addBodyPart(textPart);
         // add html
         mpContent.addBodyPart(htmlPart);
         // this part treates attachment
         if (pictureContainers != null){
              PictureContainer pictureContainer = new PictureContainer();
              String fileName = "";
              for(int i = 0; i < pictureContainers.length; i++) {
                   pictureContainer = pictureContainers;
                   byte[] bs = pictureContainer.getImgData();
                   fileName = "image" + i +".jpg";
                   DataSource dataSource = new ByteArrayDataSource(fileName, "image/jpeg", bs);
                   DataHandler dataHandler = new DataHandler(dataSource);
                   MimeBodyPart mbp = new MimeBodyPart();
                   mbp.setDataHandler(dataHandler);
                   mbp.setHeader("Content-ID", "<image"+i+">");
                   mbp.setFileName(fileName);
                   multipart.addBodyPart(mbp);
    // end attachment
    msg.setContent(multipart);

    Hi All!!! I have created this code , i hope this w'll solve u'r problem , this code display u'r html text and display the images below on it, no need to attach the image...... byee.
    package Temp;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.activation.URLDataSource;
    import javax.mail.Authenticator;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    public class HtmlImageExample {
    public static void main (String args[]) throws Exception {
    String host = "smtp.techpepstechnology.com";;
    String from = "[email protected]";
    String to = "[email protected]";
    //String to = "[email protected]";
    String dir=null;
    //String file = "C://NRJ/EmailApp/src/java/MailDao//clouds.jpg"];
    //File file = new File("C:\\NRJ\\EmailApp\\src\\java\\Temp
    Sunset.jpg");
    // Get system properties
    //Properties props = System.getProperties();
    HtmlImageExample html1 = new HtmlImageExample();
    html1.postImage(to,from);
    // Setup mail server
    String SMTP_HOST_NAME = "smtp.techpepstechnology.com";//smtp.genuinepagesonline.com"; //techpepstechnology.com";
    String SMTP_AUTH_USER = "[email protected]"; //[email protected]"; //techpeps";
    String SMTP_AUTH_PWD = "demo"; //techpeps2007";
    //my code
    public void postImage(String to, String from) throws MessagingException, FileNotFoundException, IOException
    Properties props = System.getProperties();
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", SMTP_HOST_NAME);
    props.put("mail.smtp.auth", "true");
    // props.load(new FileInputStream(file));
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(props, auth);
    // Create the message
    Message message = new MimeMessage(session);
    // Fill its headers
    message.setSubject("Embedded Image");
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setContent
    h1. This is a test
    + "<img src=\"http://www.rgagnon.com/images/jht.gif\">",
    "image/jpeg");
    // Create your new message part
    //BodyPart messageBodyPart = new MimeBodyPart();
    //mycode
    MimeMultipart multipart = new MimeMultipart("related");
    MimeBodyPart mbp1 = new MimeBodyPart();
    // Set the HTML content, be sure it references the attachment
    String htmlText = "<html>"+
    "<head><title></title></head>"+
    "<body>"+
    " see the following jpg : it is a car!
    "+
    h1. hello
    "+
    //"<IMG SRC=\"CID:Sunset\" width=100% height=80%>
    "+
    "<img src=\"http://www.yahoo.com//70x50iltA.gif\">"+
    " end of jpg"+
    "</body>"+
    "</html>";
    mbp1.setContent("h1. Hi! From HtmlJavaMail
    <img src=\"cid:Sunset\">","text/html");
    MimeBodyPart mbp2 = new MimeBodyPart();
    mbp2.setText("This is a Second Part ","html");
    // Fetch the image and associate to part
    //DataSource fds=new URLDataSource(new URL("C://NRJ//MyWeb//logo.gif"));
    FileDataSource fds = new FileDataSource("C://NRJ//MyWeb//Sunset.jpg");
    mbp2.setFileName(fds.getName());
    mbp2.setText("A Wonderful Sunset");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setHeader("Content-ID","<Sunset>");
    // Add part to multi-part
    multipart.addBodyPart(mbp1);
    multipart.addBodyPart(mbp2);
    message.setContent(multipart);
    // Send message
    Transport.send(message);
    //mycode
    private class SMTPAuthenticator extends javax.mail.Authenticator
    public PasswordAuthentication getPasswordAuthentication() {
    String username = SMTP_AUTH_USER;
    String password = SMTP_AUTH_PWD;
    return new PasswordAuthentication(username, password);

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • When I attach a file in my email it is embedded.  How do I just attach the file.  Windows users would like to be attached not embedded how do I that.

    When I attach a file in my email it is embedded.  How do I just attach the file.  Windows users would like to be attached not embedded how do I that.

    I suspect that your Windows pals are using an e-mail program from the Stone Age.
    In the last 10 years or so most people prefer to read attachments “in-line”. This allows text and images to be intermixed allowing an easier method of explaining things.
    When I am dealing with a old-fashioned, obsolete Windows user that is using an older e-mail program I simply put all the attachments at the very end of the e-mail. This will make it appear more normal to them.
    Not all Windows programs work in this primitive fashion. But as Mac users, we have become more accustomed to the modern methods of viewing attachments in-line.

  • How to attached Two file in Email.

    Dear Friends,
    i have an email optoion in my Application .But right now it send mail with out attchment.i want to send meil with attachment .
    i have Two File browser item to attach file ,Please tell me how can i attach these two file with email
    My Code is
    DECLARE
    l_id number;
    to_add varchar2(1000):=:P1_TO;
    from_add varchar2(1000);
    l_body varchar2(4000):=:P1_DESCRIPTION;
    l_sub varchar2(1000):=:P1_SUBJECT;
    BEGIN
       select email_id into from_add from user_master where user_id=:app_user; 
       l_id:=APEX_MAIL.SEND(
            p_to        => to_add, -- change to your email address
            p_from      => from_add,
            p_body      => l_body,
            P_subj      => l_sub);
      COMMIT;
    apex_mail.push_queue(
    P_SMTP_HOSTNAME => '102.111.0.9',
    P_SMTP_PORTNO => 25);
    commit;
    END;How to attached two file in email .
    How can i do this.
    Thanks

    hI,
    thanks to reply me.
    It's REGARDS .
    eg.
    if i am sending any mail then in Bottom of Email Body My Name and Contact No Should be Display.
    Thanks

  • Hi, I am user iPad and I do not know how can attach a file into email e.g. CV.  Thanks

    Hi,
    I am user iPad and I do not know how can attach a file into email e.g. CV. 
    Thanks

    You attach files within the app that creates the file or within the app that the file is saved. For example you email photos from within  the Photos App itself. Typically there will be an action icon within the app - an arrow icon many times - you tap on that to bring other options like Share - then Email.
    Attachments must be mailed within the apps themselves.

  • How do i attach a file to an email as an attachment and not embeded in the message?

    how do i attach a file to an email as an attachment and not embeded in the message?

    This question has been asked and answered several times already.
    Any file attached to an e-mail message is an attachment. There is no other possibility -- the mail protocol does not allow it.
    However, different e-mail clients may have different ways of displaying or viewing attachments, depending on their settings and the type of file attached.
    If you're having problems with Windows users complaining about your messages, follow these instructions
    <http://docs.info.apple.com/article.html?path=Mail/4.0/en/9965.html>

  • How do I attach a file to an email which is already open on the iphone5?

    How do I attach a file to an email which is already open on the iphone5?  ie I have already opened an email and started typing it.  How do I simply attach a photo to the email?

    Go to the Photos App, select a photo and then select Copy from the Share icon (box with arrow).
    Return to Mail and paste the photo where you want it.

  • How to attach a file (PDF etc.) to an email?

    Hi
    I need to attached a file to an email, how do I do this does anyone know?
    Files such as pictures, pdf etc.

    Until a week ago I was using an 18 mth old HTC3600 with Windows Mobile. I had a bunch of files stored on the 2Gb SD card that I'd send clients... pdf, word, ppt, excel... using a standard POP email with Windows Mobile settings to send/receive every 30 min via 3G. I could also receive emails with an attachment, then bluetooth it to my laptop to read. I cant do any of this basic stuff with the iPhone. Unless the method is that different that I can't see it, the iPhone is no good for business on the go... especially considering I cant sync my tasks from Outlook 2007 either! Help, somebody... anybody!!!

  • How do I attach a file to an email?

    I am trying to attach a file to an existing message but cannot find the way to do so, and would like to know if it is even possible on my new ipad 3.

    Hi
    In IOS6 you add attachments from photo scroll by pressing amail body and selecting Add Photo.
    Other filetypes i.e. from apps cannot be inserter unless you send email from app, but that is always new email. So if you reply, you can only insert from scroll.

Maybe you are looking for

  • Database Link in the OWB

    We are trying to deploy a map that needs to use a database link to access the source table in another server. We could create database link on OWB and import tables. When we deployed it we receive the first error "VLD-2771: System privileges may not

  • How Third-party sales issue PO without PR?

    Dear Master, I am doing with CS schedule line for third-party sale, my client doesn't want to generate PR, they want to generate PO directly. Is there anyway to do it? Could you pls help me on that! Thks a lot in advance! Best regards,

  • Ebook TOC trouble

    I am trying to create an ebook in Pages. The problem I am having is in Pages my TOC shows the the title of the chapter and then dots and then the correct page number. However, when I export it as an epub and then open it any ereader it loads as: Sect

  • Premier Pro CS4 install issues.

    Hello - I am trying to install Premier Pro CS4 onto a Win XP/SP3 machine that already has CS5 Premium installed.  The reason I need Premier CS4 is simple - I am still running a 32 bit machine. So, the download and install went without a hang or a hit

  • Reversal of subcontracting challan not taking place

    Sirs, I am having problems in cancelling a subcontracting challan. The error that i am getting is that the challan is in status C. Any links on Subcontracting cycle with CIN. regards