Sending HTML + related images + attachments

Hello,
I want to send an HTML file + related images + attachments.
I actually succeeds in sending HTML content + related images.
I also know how to attach files in a mail.
But when I want to have both of those functionnalities in the same mail, I miserably fail... ;)
Does anyone have a simple example that sends an HTML file + related images + attachments??
HELP!!!!
Denis.

USe this as a **guide**.
Its sends images + altText(similar to attachment, except that its embedded + html)
public static void sendC()throws Exception{
          String host = "xx";
          String from = "xxx";
          String to = "xxx";
          String file = "logo.gif";
          Properties props = System.getProperties();
          props.put("mail.smtp.host", host);
          Session session = Session.getDefaultInstance(props, null);
          Message message = new MimeMessage(session);
          message.setSubject("Embedded Image");
          message.setFrom(new InternetAddress(from));
          message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
          MimeMultipart multipart1 =new MimeMultipart("related");
          //multipart1.setSubType("alternative");
          MimeMultipart multipartBody = new MimeMultipart("alternative");
          MimeBodyPart part=new MimeBodyPart();
          part.setContent("textMessage","text/plain");
          multipartBody.addBodyPart(part);
          part=new MimeBodyPart();
          String htmlText = "<H1>Hello</H1>" +"<img src=\"cid:memememe\">";
          part.setContent(htmlText,"text/html");
          multipartBody.addBodyPart(part);
          MimeBodyPart mbpBody = new MimeBodyPart();
          mbpBody.setContent(multipartBody);
          multipart1.addBodyPart(mbpBody);
          MimeBodyPart imagePart = new MimeBodyPart();
          DataSource fds = new FileDataSource(file);
          imagePart.setDataHandler(new DataHandler(fds));
          imagePart.setHeader("Content-ID","<"+"memememe"+">");
          imagePart.setDisposition("inline");
          multipart1.addBodyPart(imagePart);
          message.setContent(multipart1);
          Transport.send(message);
You will have to make modifications so that the attchmetns are not embedded.

Similar Messages

  • Send html and  image data to browser

    Hi,
    Is it possible to send both html and image data to browser.
    Can I dynamically generate the image and send the image data without storing the image in web server's hard disk.
    Can you plz tell me what areas that I should look for and learn in order to do this.
    THanks a lot,
    Chamal.

    u can make use of jakarta`s commons fileUploader classes to upload ur file to the server
    here is a small example i made
    html is like this
    <html>
    <form method="post" action="/uploadFile" enctype="multipart/form-data">
    <input type="text" name="uname"/>
    File
    <input type="file" name="upfile"/>
    <input type="submit"/>
    </form>
    </html>
    my servlet contains these code
    FileUpload fup=new FileUpload();
              boolean isMultipart = FileUpload.isMultipartContent(req);
    //          Create a new file upload handler
              System.out.println(isMultipart);
              DiskFileUpload upload = new DiskFileUpload();
    //          Parse the request
              List /* FileItem */ items = upload.parseRequest(req);
              Iterator iter = items.iterator();
              while (iter.hasNext()) {
              FileItem item = (FileItem) iter.next();
              if (item.isFormField()) {
              System.out.println("its a field");
              } else {
              System.out.println("its a file");
              System.out.println(item.getName());
              File cfile=new File(item.getName());
              System.out.println(cfile.getName());
              System.out.println(getServletContext().getRealPath("/mine"));
              File tosave=new File(getServletContext().getRealPath("/"),cfile.getName());
              item.write(tosave);
    for more info
    http://sun.calstatela.edu/~cysun/documentation/jakarta/commons/fileupload-1.0/apidocs/org/apache/commons/fileupload/FileItem.html

  • How to send HTML mail with images multipart/related message

    Hi,
    Could any body tell me how to send HTML mail with images in "multipart/related" message,if any body can give the code ,it would be helpful.
    Thanks

    Hi,
    Could any body tell me how to send HTML mail with
    ith images in "multipart/related" message,if any body
    can give the code ,it would be helpful.
    ThanksHi!
    Refer to
    http://developer.java.sun.com/developer/onlineTraining/JavaMail/index.html
    I've found it very helpful.
    Look at the last part for a code showing how to send HTML mail!
    Regards

  • HTML Files in portal that access relative images

    We put html files on some of our pages. These open up and display their contents, which include images. These images we store on the same portal page (but hide them) so the html page has access to them in the same directory. So, we basically, use a portal page as a web server directory to put the html, css, images, etc.
    Is this going to break in a future version of portal?
    According to:
    http://download-west.oracle.com/docs/cd/B14099_19/portal.1014/b13809/apdxurls.htm
    "Following this release, path-based URLs that follow the following syntax will be obsolete"
    That sounds to me like my above scenario will break. Yes?
    Thanks.

    Why do you use html files exactly ? Because, we have legacy HTML documents that are from our pre-portal intranet days. We were able to just stick them into a portal page and they worked. And, the nice thing is that they can link to each other with relative links within the same directory/path. So, it's not just images. We really don't care that much about images, that was just an example that would be easy for people to understand. Using the /images folder does not solve most of problem. And, like I mentioned before, we also have PDFs with PDF-to-PDF web links where they all link to each other with relative links within the same directory. We also have some Flash (swf) files that take advantage of page-path URLs.
    It's not like our whole portal is made up of HTML documents. But, we used many of them instead of Word or PDF documents, because that's what we had from before. So, in most cases we can convert them to PDFs. But, there are some cases where we have mini websites made up of HTML files all stuck into a Portal page. These, and the PDF-to-PDF linked documents are a bigger problem.
    This is a major headache that we are not looking forward to.

  • Using Safari to send HTML Mail message but Mail keeps dropping images?

    I'd like to use Safari to send html Mail messages, but when I click on File>Mail Contents... Mail opens a new window but my graphics are gone. (I'm creating the html pages using MS Word for the Mac.) I get a flash of the graphics for a second, and then they are replaced by a little blue lego. Any ideas? I've tried all kinds of mail preferences but nothing seems to help.

    Figured it out (at least one way): had to load the image to a server and then add the image as a link only (uncheck "save picture with document" box).

  • Send HTML mail with an image

    Hi there,
    I'm trying to send html mail with an image. I'm able to see the image but in another section, at the very bottom of my message. Is it possible to display the image in the main part of my message ?
    Here my code :
    MimeMultipart multi = new MimeMultipart();
    BodyPart messageBodyPart = new MimeBodyPart();
    String htmlText = <H1>Test</H1><img src=\"cid:image\">";
    messageBodyPart.setContent(htmlText, "text/html");
    multi.addBodyPart(messageBodyPart);
    MimeBodyPart imagePart = new MimeBodyPart();
    DataSource fds = new FileDataSource("C:\\Resources\\Templates\\logo.jpg");
    imagePart.setFileName( "geologo.jpg" );
    imagePart.setDataHandler(new DataHandler(fds));
    imagePart.setHeader("Content-ID","<image>");     
    multi.addBodyPart(imagePart);
    msg.setContent(multi);
    Transport.send(msg);

    How many different e-mail clients have you tested that with?

  • Mail app sending jpeg image attachments as thumbnails?

    I'm trying to send four jpeg images that are 1152 x 864 (about 1.4 MG each) as attachments to an email.  Doesn't matter if I check large or actual size, they arrive as tiny thumbnails.  The receiver can't double click on them to make them larger.
    If I send one jpeg it arrives OK in full size, but if I send two or more they arrive as the small thumbnails.
    Thanks, Rick

    When the recipient saves the images, are they thumbnails? It sounds like the additional images are saved as an image file, but should expand to full size when saved.
    You could put all the images in a folder and zip the folder.
    Control-Click (Right-click) on a folder and select "Compress". This will create a .zip file.
    Another option is to put on DropBox, OneDrive, Box.com, Google drive and send a link for them to download.
    Note: Mail in Yosemite will include a feature to send large file. If the files are too big to send, it will send a link to download.

  • How to send html email notification in bpel

    hi gurus,
    i want to send html email notification from bpel.
    before, i already successful send html email with attachment, but when i send an email without attachment, then the body message will turn into a plain text.
    as i check from the email accepted, email with attachment will have a mime type "text/html" but if no attachment then it will be "text/plain"
    from the bpel configuration, by default the mime type already set to "text/html; charset=UTF-8", below is the sample configuration in my bpel process
    [quote]
    <copy>
                                    <from>string('text/html; charset=UTF-8')</from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content/ns10:MimeType</query>
                                    </to>
                                </copy>
    [/quote]
    i think this suppose to be a easy configuration, but i'm not sure whether i miss something in configuration the email process or this is a bugs in bpel.
    environment:
    linux
    jdev 11.1.1.6
    do u guys ever facing a same problem or have a solution to this ? please throw some light.
    thanks
    ===
    update, i found a temporary solutions.
    so i add a attachment from the process design, and then i change it from the source.
    [quote]
    <copy>
                                    <from>
                                        <literal>
                                            <Content xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">multipart/alternative</MimeType>
                                                <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                    <MultiPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                        <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
                                                            <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
                                                            <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
                                                            <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
                                                        </BodyPart>                                            
                                                    </MultiPart>
                                                </ContentBody>
                                            </Content>
                                        </literal>
                                    </from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content</query>
                                    </to>
                                </copy>
    <copy>
                                    <from>string('text/html; charset=UTF-8')</from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content/ns10:ContentBody/ns10:MultiPart/ns10:BodyPart[1]/ns10:MimeType</query>
                                    </to>
                                </copy>
                                <copy>
                                    <from>string('your message')</from>
                                    <to variable="varNotificationReq"
                                        part="EmailPayload">
                                        <query>ns10:Content/ns10:ContentBody/ns10:MultiPart/ns10:BodyPart[1]/ns10:ContentBody</query>
                                    </to>
                                </copy>
    [/quote]
    make sure you put the mime type multipart/alternative into the email payload content. by default, when you add attachment, it will generate mime type multipart mixed automatically.
    if you don't change it to multipart/alternative, your email will show a attachment, but actually your email doesn't contain any attachment.
    and then for the message and mimetype make sure you have that ns10:bodypart, because this email already been set as a multipart email.
    when you add attachment, by default it will generate 2 body part, first one is for the body message and the second one is for the attachment. since i only want to use the body message only, then i have to erase the second bodypart
    with this workaround, i can send a html email without attachment perfectly.
    but i have to take note, when i updating the email process from process design, then the source will be generated again automatically, and the edited one will be replaced.
    thanks.

    Make sure you upload all of the images used in your email to a server you control. Then, change your image paths to point to those uploaded images with absolute links.
    You will get marked as spam if you attempt to send images as attachments to a large list of recipients and most email clients won't download images to begin with, so make sure your html email makes sense with broken pictures.
    CSS support is spotty across email clients, if you use css, make sure it's inline, not embedded in the <head> or externally linked in the <head>. Some email clients strip out the <head> section entirely.
    Basically, you need to design your html email as if you haven't moved out of the 90's yet, as far as web design is concerned, in order to get maximum cross client compatibility.
    Then, when you're ready, I would suggest using a service like www.icontact.com or www.constantcontact.com if your subscriber list is anywhere over 100 or so recipients.

  • Image attachments sent from Cameraroll are displayed inline/embedded - why?

    Dear community!
    I often send pictures from the camera-roll by email to several email-addresses.
    I would like the recipient to recieve the email with the images as attachments, but now, they are displayed as "inline" / "embedded" images in the mail body, instead of file attachments. Some of my recievers are using a CMS system to handle inbound email, and in these cases, when the images are embedded, they will not recieve the attachments correctly in their system.
    Is there any settings to toggle this ?
    Best regards,
    Daniel

    As with the Mail app on a Mac, the iOS Mail app displays all image attachments as inline or viewed in place, which is not the same as embedded. Photos are sent as true attachments to the email.
    Depending on the recipient's email client, a photo attached to an email will appear inline or viewed in place (as with the Mail app on a Mac or with the iOS Mail app), or as an attached file only which must be opened separately to be viewed, which the sending email client has no control over.
    When I receive a photo attachment sent by Outlook that appears as an attached file only with the sent email in Outlook, the photo appears inline or viewed in place within the body of the email with the Mail app on  my Mac and with the iOS Mail app with my iPhone and iPad, which Outlook has no control over.
    You cannot change how an attached photo or image appears in the message body with the iOS Mail app, and an attached photo or image that appears inline or viewed in place is not the same as embedded. The iOS Mail app does not support composing in HTML, which is required to embed an image.

  • How to send html email made in dreamweaver

    how to send html email made in dreamweaver

    Make sure you upload all of the images used in your email to a server you control. Then, change your image paths to point to those uploaded images with absolute links.
    You will get marked as spam if you attempt to send images as attachments to a large list of recipients and most email clients won't download images to begin with, so make sure your html email makes sense with broken pictures.
    CSS support is spotty across email clients, if you use css, make sure it's inline, not embedded in the <head> or externally linked in the <head>. Some email clients strip out the <head> section entirely.
    Basically, you need to design your html email as if you haven't moved out of the 90's yet, as far as web design is concerned, in order to get maximum cross client compatibility.
    Then, when you're ready, I would suggest using a service like www.icontact.com or www.constantcontact.com if your subscriber list is anywhere over 100 or so recipients.

  • Sending HTML email

    I am sending an HTML email. HTML created in dremaweaver, and
    sent through Outlook Express... it all works fine... The design
    looks good. The images are there. It all works fine except one
    thing:
    THE PROBLEM:
    On the recieving end, the images also appear as "attachment"
    files, even though I know I sent just HTML with images linking to
    my server.
    THIS IS WHAT I WANT:
    Basically, I don't want the email to have attachments, but
    just an HTML email and thats it.
    Please somebody Help!!!
    So, What do I do to fix it?
    Thanks,
    Nenad

    > On the Mac, Microsoft Entourage (that's outlook for the
    mac) has this
    > problem.
    I'd love to see this, since Entourage is what I use. Can you
    send one of
    these emails to me at forums at great-web-sights.com?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Nenadmail" <[email protected]> wrote in
    message
    news:e28e18$k1e$[email protected]..
    > The email clients are, Yahoo Mail, and my personal email
    that I have setup
    > on
    > all my computers.
    >
    > On the PC Microsoft Outlook and Outlook Express both are
    fine.. no
    > attchment
    > "problem"
    >
    > On the Mac, Microsoft Entourage (that's outlook for the
    mac) has this
    > problem... On Yahoo Mail, it has the same problem.
    > The whole message, and design is good. The pictures look
    fine in the
    > email.
    >
    > BUT!! The email also shows an attachemnt of those
    pictures... I don't
    > want
    > them to see any attachments on the email. I know there
    must be a way to
    > fix
    > this problem. Because I get emails from Yahoo and other
    newsletters all
    > the
    > time, and none of them ever show attachments.
    >
    > What am I doing wrong?
    >

  • Send HTML emails

    I am sending an HTML email. HTML created in dremaweaver, and
    sent through Outlook Express... it all works fine... The design
    looks good. The images are there. It all works fine except one
    thing:
    THE PROBLEM:
    On the recieving end, the images also appear as "attachment"
    files, even though I know I sent just HTML with images linking to
    my server.
    THIS IS WHAT I WANT:
    Basically, I don't want the email to have attachments, but
    just an HTML email and thats it.
    Please somebody Help!!!
    So, What do I do to fix it?
    Thanks,
    Nenad

    I am not even sure what "email extension page" means...
    Whats ASB "VBScripts"? I want to try anything that helps..
    How do I set it up so that it works
    The issue is this:
    When I'm sending it, there is no attachments.. The problem is
    on the recieving end.. Yahoo Mail for example shows up as
    attachments.. My other computer, Outlook shows it as attachments..
    I don't understand how it worked on yours..
    Ironically, when i recieve HTML email newsletters from Yahoo,
    or any other company, their HTML emails never have any attachments.
    I am not 100% familiar with HTML yet.. so you have to explain
    things a little more.. please help

  • Firefox is not sending full size images how do I fix this?

    Using Mac 10.5.8 Google Gmail and Firefox 15.0.1 to send email with an image attachment,the image is downsized and I find nowhere to set Firefox to send it actual or full size. When sending with my Apple Nail program there is an option at the lower right corner of the image to force it to be sent actual size, How do I force Firefox to send image attachments full image size?

    This sounds like a problem with Gmail. You can follow these steps to be sure:
    * Open [http://en.wikipedia.org/wiki/Safari_%28web_browser%29 Safari]
    * Visit GMail
    * Log in
    * Try sending an email with an image attachment
    If you see the same problem, you will know that the problem is related to GMail, not Firefox.

  • Image attachments sent to me by another are being downsized

    I'm a freelance designer, and one of my clients sends me all work via e-mail. The last few days, when she sends me images (that she received from another client) they are downsized to a point where I can't even use them. Is there a setting somewhere that would automatically resize any images?
    Thanks in advance ...

    Some email client software or email provider may be changing the file
    size of image in an email, to accommodate their own system limitations;
    so perhaps if the sender of the original email/image were to contain such
    images in an archive, to put such images together in a folder then archive
    them so they would be as-sent, then open them on your end, it may work.
    But any limits the email provider or client may have on the user accounts
    in question could affect the size and/or quality of attached or included items.
    If using an account such as gmail, actual attachments can be rather large;
    and single images or .zip archives can be handled with relative ease. And,
    if the other party has a way to host or upload image to a web page, you
    could get them directly. There is a chance some conversion is taking place
    and once the content is lost, you won't get it back when the file is changed.
    Perhaps someone with more experience handling, sending, and converting
    images can suggest more exact ideas on this matter. More information would
    likely be needed to answer a question with more detail. Types, sizes of files,
    what the middle-party may be doing to the initial files (if not just forwarding)
    & if there is a ceiling on one of their email accounts that may edit image size.
    Good luck & happy computing!

  • Sending mail with multiple attachments

    hi.I wrote a code to send mail.but i need to send mail with multiple attachments.here is the code i wrote.what should i do to send the mail with multiple attachments.if i run this code iam able to send mails but not attachments.please help me
    <%@ page import="javax.mail.*,javax.mail.internet.*,java.util.Date,java.io.*,java.net.InetAddress,java.sql.*,java.util.Properties,java.net.*,javax.sql.*,javax.activation.*,java.util.*,java.text.*" %>
    <%@ page import="java.io.*,java.sql.*,java.net.*,java.util.*,java.text.*" %>
    <%
         String Attachfiles1="";
         String Attachfiles2="";
    String Attachfiles3="";
    if("Send".equalsIgnoreCase("send"))
              try
         String subject="",from="",url = null,to="";
         String mailhost = "our local host";
         Properties props = System.getProperties();
         String msg_txt="";
         String strStatus="";
    // byte[] bin=.....;
    //Adds Attechment:
    Multipart multipart = new MimeMultipart();
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText("Here are my attachments");
    multipart.addBodyPart(messageBodyPart);
    messageBodyPart = new MimeBodyPart();
    //first attachment
    DataSource source = new FileDataSource("C:\\img1.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("C:\\Telnor1.jpg");
    multipart.addBodyPart(messageBodyPart);
    //Second attachment
    DataSource source2 = new FileDataSource("C:\\img2.jpg");
    messageBodyPart.setDataHandler(new DataHandler(source2));
    messageBodyPart.setFileName("C:\\Telnor2.jpg");
    multipart.addBodyPart(messageBodyPart);
    //etc...
    message.setContent(multipart);
    Transport.send( message );
    String mailer = "MyMailerProgram";
    to=request.getParameter("to");
    from=request.getParameter("from");
    subject=request.getParameter("subject");
    msg_txt=request.getParameter("message");
    props.put("mail.smtp.host", mailhost);
    Session mailsession = Session.getDefaultInstance(props, null);
    Message message = new MimeMessage(mailsession);
    message.setFrom(new InternetAddress(from));
    message.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));
    message.setSubject(subject);
    message.setHeader("X-Mailer", mailer);
    message.setSentDate(new Date());
    message.setText(msg_txt);
    BodyPart messageBodyPart = new MimeBodyPart();
    BodyPart messageBodyPart2 = new MimeBodyPart();
    Multipart multipart = new MimeMultipart(); // to add many part to your messge
    messageBodyPart = new MimeBodyPart();
    javax.activation.DataSource source = new javax.activation.FileDataSource("path of the file");
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName("file_name");
    messageBodyPart2.setText("message"); // set the txt message
    multipart.addBodyPart(messageBodyPart);
    multipart.addBodyPart(messageBodyPart2);
    Transport.send(message);
    out.println("Message Sent");
    catch (Exception e)
    e.printStackTrace();
    if("Attachfiles".equalsIgnoreCase("attachfiles"))
    Attachfiles1=request.getParameter("fieldname1");
    Attachfiles2=request.getParameter("fieldname2");
    Attachfiles3=request.getParameter("fieldname3");
    %>
    <html>
    <body>
    <div class="frame">
         <form action="Composemail.jsp" method="post">
              <b>SelectPosition:</b> <select name="cars" >
    <option value="ABAP">ABAP
    <option value="saab">Saab
    <option value="fiat">Fiat
    <option value="audi">Audi
    </select><br><br>
    <table border="1" cellpadding="2" cellspacing="2">
    <tr><th>Name</th>
    <th>EmailId</th>
    <th>ContactNumber</th>
    <th>Position</th>
    </tr>
    <tr>
    <td>
    </td>
    </tr>
    </table><br>
    <b>SelectUser :</b><select name="cars">
    <option value="Administrator">Administrator
    <option value="saab">Saab
    <option value="fiat">Fiat
    <option value="audi">Audi
    </select>
    <br>
    <b>To :</b>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="text" name="to" size="72"><br>
    <b>From :</b>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="text" name="from" size="72"><br>
    <b>Subject :</b>&nbsp&nbsp&nbsp<input type="text" name="subject" size="72"><br>
    <%=Attachfiles1%><br><%=Attachfiles2%><br><%=Attachfiles3%><br><br>
    <b>Message:</b><br>
    &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<textarea rows="10" cols="50" name="message">
    </textarea> <br><br>
    <b>AttachedFile:</b>&nbsp<input type="file" name="fieldname1" value="filename" size="50"><br><br>
    <b>AttachedFile:</b>&nbsp<input type="file" name="fieldname2" value="filename" size="50"><br><br>
    <b>AttachedFile:</b>&nbsp<input type="file" name="fieldname3" value="filename" size="50"><br><br>
    &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="submit" name="attachfiles" value="Attachfiles">
    <center>
    <input type="submit" name="send" value="Send" >
    </center>
    </form>
    </div>
    </body>
    </html>

    Create a separate MimeBodyPart object for each attachment, rather than reusing
    the same one over and over.

Maybe you are looking for

  • How to specify an outer join in query builder

    I've very quickly built a large query with the query builder, and it works fine, but only produces 9 out of 2200 records - so I need to change it to an outer join. My problem is that I can't seem to find a way to specify an outer join. I've tried edi

  • Installing CS4 on MacBook Pro

    I have a new MacBook Pro and wish to install my Creative Suite 4 using my disk. It begins to install then stops at "installin AIR". I have downloaded the latest version of AIR, however I get a prompt that tells me this software requires a version of

  • Can't mount external firewire drive on MacBook Pro

    I cannot get my OWC 1.5TB Serial ATA hard drive to mount any longer. What is the best mounter utility for the following Macbook Pro running 10.6.8: Hardware Overview:   Model Name:    MacBook Pro   Model Identifier:    MacBookPro8,2   Processor Name:

  • Can there be a way to prioritize flash over page-load requests? When I listen to flash audio and browse, I will get audio stutter while doing page loads.

    I have noticed that flash performance suffers when browsing in one windows and streaming audio in the other. I'll take jagged page loads over skippy audio. Anyway to do some prioritizing? Latest version on W7. Art

  • Final Cut Pro, HF S100 and 24p

    I recorded movies in 60i, 30p and 24p (by the setting on the camera). I then do a LOG AND TRANSFER and movies are brought in. When i look at the settings (in FCP) they are all 29.97 framerate. Why is this? How do i get the 24p footage in, and have FC