How do I put a picture in an email

I want to put a pdf in an email, but not as an attachment, I want the email to open and the picture to all ready be there..just dont know how, thanks for your help

Thank you Dan! I understand all that. What I don't get is that when I send an email to someone, the only way I can figure to put a picture in the email is by either dragging it onto the body of the email where I want to place it (which makes it an attachment) or I can use the Attach File from the File menu or the Attach button at the top of my composing window.
I get emails all the time the look like a regular html web page with formatting and inline photos and graphics and they never show up in my email as having attachments. This is what I want to do. So, how does one place, insert, paste as html, or other wise put an image into an email so that it has formatting and does not show up as having an attachment when someone else receives my email.
I am a photographer and the biggest reason I am asking the question is that I want to send out an email that includes an image inline in the body of the email so that the recipient will not trash the email before opening it because it has an attachment or their spam filter intercepts it and trashes it because it has an attachment.
Thanks again for any assistance!
If anyone likes, I can send you an example of both how my emails look (with attachments) and ones that I get that have the formatted text and photos.
Am I just thick here and not getting something?????
Cheers!
Gar
Message was edited by: Gar Benedick

Similar Messages

  • How do i put a Picture in LiveType?

    How can i put a picture as a background?

    Do you want to reference the background or have it appear in your final project? You will want to open the manual to the section on BACKGROUND MOVIE to make sure you know how to enable or disable the b/g function when you render your output or move your project to FCP.
    If you are thinking you are going to use the b/g movie for the entire project and jsut place your LT elements on top of it: don't.
    bogiesan

  • How do I put a picture in Final Cut Pro X's Stats title?

    Hey! How do I put a pictures on these two little gray boxes, on the Stats generator?

    In the Title tab of the Inspector, under Published Parameters,  there are two drop zone wells. Click in one and then select your source clip from the browser or Time line…then the other.
    Russ

  • How Do You Put The Picture Of the Album Your Listening to (Album Art) ?????

    Help PPLZ How Do You Put The Picture Of the Album Your Listening to (Album Art) ?????

    http://www.ilounge.com/index.php/articles/comments/adding-album-art-in-itunes/

  • How can I attach a picture to an email in file format not as a picture

    how can I attach a picture to an email in file format,

    Please pardon the intrusion…
    Hi, Leroy! 
    Congratulations on advancing to Level 6!
    At the Water Cooler in the Level 6+ Lounge, we are throwing virtual confetti in celebration of your attainment of Level 6-dom. Would you care to join us at the Water Cooler?
    Towards the bottom of the index on the Apple Support Communities Home Page you soon will find the Lounge link available to you. It should work for you within the next 24 hours if all goes as it should.
    Hope to see you there soon!

  • My apple ID is showing someone elses email address and not mine so when i want to buy or update apps it brings this other email address up. please can someone help how do i put it back to my email address?

    my apple ID is showing someone elses email address and not mine so when i want to buy or update apps it brings this other email address up. please can someone help how do i put it back to my email address?

    First go here - https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/ and login under the manage tab.  Check your information and be sure it is all correct.
    An AppleID is nothing more than an email address, so if you see another email address in the store, then someone has logged in with a different AppleID than yours.  Did you let someone else use your iPhone?

  • How do I put a picture in my gui?

    Can anyone tell me how to put a picture in my gui?
    Thank you

    Someone used my code before I added this new stuff. They took it word for word.
    I apologize if you are getting frustrated with me. Please know I am working very hard on this. Learning Java in just a few weeks to me is impossible so I wil take all the help i can get. I know it must seem very easy to you because you know it very well but I am just learning, maybe you can remember back to when you were learning?
    Anyways i tried this code but it did not work. I didn't get any errors when compiling but nothing showed.:
    JLabel label = new JLabel ( new ImageIcon("test.gif"));
        f.getContentPane().add(label, BorderLayout.NORTH);Here is my code but please keep in mind that alot of it has comments because I have not actually worked on the code for it yet. Just getting the buttons set up is where I am at.
    I really wish that i could look at the examples and just have it be easy to code from it. I tried and I tried and sometimes I can get it but sometimes I just can't.
    Thank you,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.JFrame.*;
    import java.io.*;
    class Testing
      java.util.List<DVD> dvds = new java.util.ArrayList<DVD>();
      JTextField tfTitle = new JTextField(15);
      JTextField tfGenre = new JTextField(15);
      JTextField tfProductNumber = new JTextField();
      JTextField tfPrice = new JTextField();
      JTextField tfQuantity = new JTextField();
      JTextField tfInventoryValue = new JTextField();
      DefaultListModel dlm = new DefaultListModel();
      JList list = new JList(dlm);
      public void buildGUI()
        JButton btnLoadfile = new JButton("Load File");
        JButton btnAdd = new JButton("Add");
        JButton btnModify = new JButton("Modify");
        JButton btnDelete = new JButton("Delete");
        JButton btnSearch = new JButton("Search");
        JButton btnSave = new JButton("Save");
        JButton btnFirst = new JButton ("First");
        JButton btnPrevious = new JButton ("Previous");
        JButton btnNext = new JButton ("Next");
        JButton btnLast = new JButton ("Last");
        JPanel p1 = new JPanel(new BorderLayout());
        JPanel p = new JPanel(new GridLayout(6,2));
        p.add(new JLabel("DVD Title: "));
        p.add(tfTitle);
        p.add(new JLabel("Genre: "));
        p.add(tfGenre);
        p.add(new JLabel("Product Number: "));
        p.add(tfProductNumber);
        p.add(new JLabel("Price per Unit: "));
        p.add(tfPrice);
        p.add(new JLabel("Quantity on Hand: "));
        p.add(tfQuantity);
        p.add(new JLabel("Inventory Value: "));
        p.add(tfInventoryValue);
        p1.add(p,BorderLayout.NORTH);
        JPanel p2 = new JPanel();
        p2.add(btnLoadfile);
        p2.add(btnAdd);
        p2.add(btnModify);
        p2.add(btnDelete);
        p2.add(btnSearch);
        p2.add(btnSearch);
        p2.add(btnSave);
        p2.add(btnFirst);
        p2.add(btnPrevious);
        p2.add(btnNext);
        p2.add(btnLast);
        p1.add(p2,BorderLayout.CENTER);
        JFrame f = new JFrame();
        //f.setIconImage(new ImageIcon("test.gif").getImage());
        JLabel label = new JLabel ( new ImageIcon("test.gif"));
        f.getContentPane().add(label, BorderLayout.NORTH);
        f.getContentPane().add(p1,BorderLayout.NORTH);
        JScrollPane sp = new JScrollPane(list);
        f.getContentPane().add(sp,BorderLayout.CENTER);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.pack();
        f.setLocationRelativeTo(null);
        dvds.add(new DVD("StarWars","Action","1245",10.00,5,55.00));
        dvds.add(new DVD("OfficeSpace","Comedy","9821",20.00,5,105.00));
        dvds.add(new DVD("Lost","Drama","9382",25.00,2,52.50));
        dvds.add(new DVD("Friends","Comedy","9824",18.00,5,94.50));
        dvds.add(new DVD("Superman","Action","3652",20.00,10,210.00));
        dvds.add(new DVD("Batman","Action","9583",17.00,7,124.95));
        dvds.add(new DVD("Cinderella","Family","2734",19.00,8,159.60));
        setList();
        f.setVisible(true);
        f.setIconImage(new ImageIcon("Images/test.gif").getImage());
        btnAdd.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                                    Double.parseDouble(tfPrice.getText()),
                                   Integer.parseInt(tfQuantity.getText()),
                                   Double.parseDouble(tfInventoryValue.getText())));
            setList();
            clearTextFields();
        btnDelete.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            int index = list.getSelectedIndex();
            dvds.remove(index);
            setList();
            clearTextFields();
            btnModify.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent ae){
             int index = list.getSelectedIndex();
            dvds.remove(index);
                 dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                                         Double.parseDouble(tfPrice.getText()),
                                        Integer.parseInt(tfQuantity.getText()),
                                        Double.parseDouble(tfInventoryValue.getText())));
                 setList();
                 clearTextFields();
    // btnSave.addActionListener(new ActionListener(){
    //          public void actionPerformed(ActionEvent ae){
    //                try
    //                  File file = new File("TestSave.txt");
    //                  PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(file)));
    //                  out.println("a line");
    //                  out.println("another line");
    //                  out.close();//<---------very important
    //                catch(IOException ioe){ioe.printStackTrace();}
                  //dvds.add(new DVD(tfTitle.getText(),tfGenre.getText(),tfProductNumber.getText(),
                  //                            Double.parseDouble(tfPrice.getText()),
                  //                           Integer.parseInt(tfQuantity.getText()),
                  //                           Double.parseDouble(tfInventoryValue.getText())));
    //                  setList();
    //                  clearTextFields();
    //    btnSearch.addActionListener(new ActionListener(){
    //          public void actionPerformed(ActionEvent ae){
    //               String Search =
    //               JOptionPane.showInputDialog("Enter name of Movie");
    //               int x =0;
    //               for(x = 0; x < dvds.size(); x++)
    //            DVD dvd = (DVD)dvds.get(x);
    //  if(dvd.title.equals(searchTitle))// or
    //            if(dvd.title.equalsIgnoreCase(searchTitle))
    //        list.setSelectedIndex(x);
    //        break;
    //          if(x == dvds.size()) System.out "not found";
        btnPrevious.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent ae){
                 DVD dvd = (DVD)dvds.get(list.getSelectedIndex());
                                int index = list.getSelectedIndex()-1;
                                 if (index <0) index = dvds.size()-1;
                                list.setSelectedIndex(index);
         btnNext.addActionListener(new ActionListener(){
                    public void actionPerformed(ActionEvent ae){
                                  DVD dvd = (DVD)dvds.get(list.getSelectedIndex());
                                   //int index = list.getSelectedIndex()+1;
                                   int index = (list.getSelectedIndex()+1) % dvds.size();
                                list.setSelectedIndex(index);
        list.addListSelectionListener(new ListSelectionListener(){
          public void valueChanged(ListSelectionEvent lse){
            if(lse.getValueIsAdjusting() == false)
              int index = list.getSelectedIndex();//<---
              if(index > -1)//<---
                DVD dvd = (DVD)dvds.get(index);//<---
                tfTitle.setText(dvd.title);
                tfGenre.setText(dvd.genre);
                tfProductNumber.setText(dvd.productNumber);
                tfPrice.setText(""+dvd.price);
                tfQuantity.setText(""+dvd.quantity);
                tfInventoryValue.setText(""+dvd.inventoryValue);
      public void setList()
        dlm.clear();
        for(int x = 0, y = dvds.size(); x < y; x++)
          dlm.addElement((DVD)dvds.get(x));
      public void clearTextFields()
        tfTitle.setText("");
        tfGenre.setText("");
        tfProductNumber.setText("");
        tfPrice.setText("");
        tfQuantity.setText("");
        tfInventoryValue.setText("");
        tfTitle.requestFocusInWindow();
      public static void main(String[] args)
        EventQueue.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    class DVD
      String title;
      String genre;
      String productNumber;
      double price;
      int quantity;
      double inventoryValue;
      public DVD(String t,String g, String pn, double p, int q, double i)
        title = t; genre = g; productNumber = pn; price = p; quantity = q; inventoryValue = i;
      public String toString(){return title;}
    }

  • How do I put a picture in the background on Pages

    I must be having a senior moment!   In the past I have made a poster in Pages and put a picture in the background and text over the top.
    I have just tried to do it again and can't for the life of me remember how to do it.   I do have a new version of Pages which has confused me slightly.
    Any help would be much appreciated.
    Kathy

    Menu > Arrange > Section Master > Move object to Section Master
    You also should still have Pages '09 still in your Applications/iWork folder
    Pages 5.5.3 has over 100 + features missing and is comparatively buggy.
    Peter

  • How do i put a picture on my home screen back ground

    im trying to put a picture on my home screen back-groud and i don't know how... YET

    if you have an 8 gig 3g, you can't, as it is not supported. otherwise it would be an option after you select the photo you want as the background. it would ask you to set lock screen, home screen or both.

  • How do I put just pictures from iphoto to idvd to make a dvd?

    Okay. I had a lot of trouble today. I wanted to get pictures from iphoto to a dvd. So I did that by going to iphoto then share then burn. Well, that worked on my blu ray. The pictures would come up sorta like iphoto (the rolls and everything) But my videos did not work however. But I figured out that they were .mpg and they need converted. But I heard that what I did (using iphoto) won't work on reg. dvd players but for some reason it works on my blu ray. Anyways, I heard that using idvd will work. How do I get my pictures over to idvd and burn it to a dvd? I tried doing this once but the themes were what was messing me up. The pictures would show up in a theme and I don't want that just the pictures. Any advice, tips, etc would be appreciated!

    Hi lace66
    Welcome to apple discussions. You may wish to pose the very same question to the iPhoto Forum also since I'm not 100% certain if any of the following apples to iPhoto 6 => iDvd. It's really a question for that particular forum. It's been months since I've worked in earlier versions of iLife. However, w/in ilife'08 as well as the latest iLife version '09; you could do it easily like this:
    click here
    Essentially you simply select the photos you want within iPhoto, go to the top menu where it says "Share" => Send to iDvd. Or (another option) you could burn your photos directly one step down on the drop down menu where it says "Burn" (directly below "send to iDvd") if I'm not mistaken.
    Hope this helps but if not just come on back.
    Message was edited by: SDMacuser

  • I lost my iphone 4 and had pictures on icloud. I got another iphone 4, how can I put my pictures from icloud to iphone 4?

    How can I restore my pictures in iCloud to new iPhone4?

    Welcome to Apple Communities
    Go to Settings > iCloud and log in with the Apple ID. Then, go to Photos > Photo Stream and you should see your photos. Press Share button, select them and import to your device

  • How do I save a picture from an email. It's not an attachment.

    I can right click on a picture in an Email (not an attachment) and it says "Save as picture". It brings up MY Pictures, but when I click SAVE, nothing happens.

    Did you give the file a name?
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • How can i put my pictures from my picture files into my iPhotos for photo streaming onto my apple tv?

    Hi, I am a new user to iMac and have now bought just about every Mac product you can think of and have just taken delivery of an Apple TV and now want to stream photos but don't know how to transfer photos from my picture files over into my iPhotos for Photo Streaming. Is there an easy way? I have Mac for Dummies but they don't mention it there!! Guess it's too dummy for them!!! Any one out there can help me as I have loads of pics I would like to see on the big screen from time to time

    You need to connect the Apple TV and the computer to the same network and then turn on "Home Sharing" in iTunes. Check boxes allow you to select what you want to share.
    You'll see a "Computer" icon on the Apple TV and it holds all your music, movies and photos.

  • How do i put multiple pictures on one slide in the slideshow module?

    The lightroom slideshow module appears to only allow one picture or one video per screen.  I would like to put everything within one folder (usually 4 pictures) on one screen.  any way to do this?  Does anyone know software that will do this if lightroom doesn't?  Thank you!

    You could do this with Photoshop or using just Lightroom you could "print" mulitiple pictures to a jpeg file and then import the jpeg for your slideshow. Look under Print Job near the bottom of the print screen and choose jpeg file for Print To.

  • How can I put selected pictures from camera roll into a seperate album removing them completly from camera roll??

    Im gunna be straight up honest here.. I have some rude pictures of my girlfriend on my iphone which I would like to keep for my own personal viewing but obviously dont want family and friends seeing when they are flicking threw my camera album which often happens. I had intended to make a private album put them all in there and put a passcode on the album. With all of apples features I would of thought this would be a standard thing you could do, however when I made the private album the pictures were still in my camera roll and if I try to delete them I am told the pictures will be removed completly from my phone.. This is stupid. What is the point in being able to make albums if the pictures are going to still all be in the camera roll!? Does anybody know of a way I can move pictures from camera roll to a private album?? Any help would be much appreciated.

    Photos placed in a user created album or in an existing album are not copied/duplicated. The photos placed in an album include a pointer to the original photos stored in the Camera Roll. Having an album for select photos is for viewing the select photos only without having to see all photos in the Camera Roll.
    The same applies to albums transferred from your computer. All photos transferred from your computer are stored in the Photo Library. Photos on the albums below include a pointer to the original photos stored in the Photo Library. The photos appear as they are duplicated when they are not. This way you can view the photos in an album only by selecting the album, or all photos on the Photo Library or Camera Roll by selecting it.

Maybe you are looking for

  • Using a WITH list in an update statment

    I have the following SQL that gives a 'The multi-part identifier "CurrentScannedCasks.CSC" could not be bound.' error,. So how can I, or can I, use the contents if a WITH statement to populate this update statement? WITH CurrentScannedCasks (CSC) AS

  • Attachment Downloading in Mail - How do you know the status of the download

    Hi, I'm trying to send a keynote presentation from my iMac to my MacBook and it doesn't seem to be working. The attachment shows up in my email, I click on it, and it doesn't really do anything. Is there a way to check the status of the download, or

  • Can't create MBO from SAP servers

    Hi, I'm trying to create MBO from SAP servers with Sybase Unwired WorkSpace. I created Connection Profile and it worked well(Ping succeeded!). However, I expanded profile tree, no BAPI was shown. Any ideas what is happening here? SAP version is below

  • Unexpected clipping using draw transform in Graphics2D

    My current project needs to be able to take arbitrary sized images and size them to a fixed size on the screen. It also has to rotate them through 90 degrees. I have code to do this which (omitting a few details) looks like this.: int dynamicImageWid

  • Accessing app store from another country

    I've bought my mac in the uk. Now back home I'm not able to access the store. Please help me!