How do I make a photo a jpeg that can be attached to an email and not in the body

How do I attach photos to an email so that they are an attachment and not in the body of the email?

Right click on the photo in the email and select Display as Attachment from the contextual menu.  How it ends up is dependent on the email client.  You may have it show up as an attachmen before sending and the receiving end may be set to display it in the body.
In either case be sure to set Mail to send Windows Friendly Attachments:
If you compress/zip the file it before adding to the email it will definitely be added as an attachment. But that requires an couple of additonal steps and to assure the zipped file will be Windows friendly you would need to use the free YemuZip application.
OT

Similar Messages

  • How do I make a simple voice recording that can be attached to an email?

    I want to record a short message, mp3 or any format is fine, and attach it to an email. I've tried opening Garage Band to do it, and downloaded Audacity, but I have no idea how to use either one. I have a microphone that plugs into the audio port, and know how to switch to "use audio port for sound input" in preferences. But I want a simple command that says "start recording" instead of the complicated control panels I see in the two programs I've looked at.

    dianefromeliot wrote:
    Thanks for the software suggestion - http://mac.softpedia.com/get/Audio/Audio-Recorder.shtml - it looks good. Why do you use it instead of Garage Band?
    Had it before GB existed; I use other audio software for other tasks, but this one is probably the most easy to use app (of any kind) I've ever used. Click, speak, click, click. Done, with file sitting on my desktop.

  • How do you make a photo in DW that changes automatically in a loop and needs  no visable buttons

    How do you make a photo in DW that changes automatically in a loop and needs  no visable buttons?

    I'm sorry to be so vague. I have recently found out that what I want 
    to do is put my images in a javascript image rotator. I have looked 
    this up on google and have now tried about 6 different codes. I try to 
    follow the insert directions but I must be doing something wrong. I 
    get the first photo linked up but can never make the picture change to 
    show the other two photos in the image folder.
    Can you direct me as to how this works in dw?
    Thank you so much for helping.
    Pam

  • How do you make a photo an attachment and not in the body of the email

    How do you attach a photo as an attachment and not in the body of the email?

    If you attached the photo using the attach icon or attach command, it will act as an attachment on the recipient's end, even though you see it in Mail in the body of your message. If you drag and dropped your photo into your email, it will act as a placed graphic in the body of your message.

  • How do I only show my inbox on email and not all the support folders

    How do I only show my inbox on email and not all the support folders

    There is a third-party program called Attachment Tamer that will do that for you.  In the Terminal, you can type this:
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes
    Also note that while Attachment Tamer does some things with the encoding that makes certain email clients display the item as an attachment, what shows up at the receiver's end is solely dependent on their email client and its settings.

  • Hi I would like to know, how do I add a Hyperlink on Flash, that opens a PDF in adobe reader and not the web browser.

    Hi I would like to know, how do I add a Hyperlink on Flash, that opens a PDF in adobe reader and not the web browser.

    Yoh, what is FSCCommanr ? sorry man I am an absolute beginner in Flash. I tried the code:
    /* Click to Go to Web Page
    Clicking on the specified symbol instance loads the URL in a new browser window.
    Instructions:
    1. Replace http://www.adobe.com with the desired URL address.
       Keep the quotation marks ("").
    instance_name_here.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);
    function fl_ClickToGoToWebPage(event:MouseEvent):void {
      navigateToURL(new URLRequest("http://www.adobe.com"), "_blank");
    this is the same code I used before and it opens a pdf file in a web browser, and it doesn't open an AutoCAD file.

  • How do I add an attachment to an email and not have it show up in the body of the email?

    How do I add an attachment to an email and not have it show up in the body of the email? 

    You can right click or command-click on the image in the email and select "view as icon".
    You can change the default behavior of Mail.app so that it always shows the attachment as the icon:
    open a Terminal window (Applications > Utilities > Terminal)
    at the prompt, type in this (it must be exact, or copy and paste it in if you have trouble typing things precisely):
    defaults write com.apple.mail DisableInlineAttachmentViewing -bool yes
    Then hit return.
    To revert to the previous default (where the attachment is visible in-line), you just enter the same command with "no" instead of "yes" at the end.
    In either case, however, how the viewer of the email sees the attachment (either as an icon or in-line) depends on how their email client is set up, not on how you send it.
    Message was edited by: arthur

  • How to get Yahoo Mail to allow pictures/graphics to appear within a received email and not just as an attachment?

    When I receive emails that contain graphics and pictures within the body of the email they will be displayed only as attachments that have to be 'downloaded' and opened separately. I contacted Yahoo Mail and they said that it must be caused by my browser(Firefox). I have now difficulty with the graphic when I use Explorer. What setting, if any, do I have to change in Firefox to correct this?

    Your signature says you have the latest operating system, Mavericks (10.9) but you've asked your question in the forum for Snow Leopard (10.6) which is a much older and somewhat different system. You are much more likely to get an answer in the forum applicable to your system, so I've asked the Hosts to move your question there (it may be a few hours before this happens). I put the note there so no-one else who looks at this need bother to make the request.

  • How can i read every"number" value and not only the 1st?

    in the vi only the first "number" value(from the data acquisition)is read in the small loop.how can i make every value to be read?every value must be compared with the "numeric" constant,and,if greater the led must turn on.afterwards,when a value which is less than the "numeric" is found the led must turn off.please answer or send mail to [email protected]
    Attachments:
    oximet5.vi ‏152 KB

    The more I look at your program, the less I understand it.
    Why are you setting number = number in a case if SO2 = ""? number always equals number.
    In your sequence frames 1 and 4, you have no control over which write (date or time) happens first. Just placing one function to the left of another doesn't make it happen first if your wiring doesn't create data dependency. Review the section on Data Dependency in chapter 5 of the LabView User's Manual.
    It looks you're writing to and reading from the same file using Write File and Read Lines from File.vi. Why read back data you just wrote? You have the data on your diagram. If you want to convert it from string to numeric, use a Sring/Number Conversion function from the String palette.
    On Read Lines from File.vi (which I'm not sure you even need), you should use a shift register for the start of read offset rather than a local variable for mark after read (chars.). With a shift register, you can initialize it to 0 when the VI starts. Using a local, if you restart the VI, it will try to startup from where you left off the last time, but you just opened the file for create or replace.
    In your sequence frames 2 and 3, why do you wait for the number to be less than the numeric before writing a carriage return to the file? Also, LabView has a End of Line constant which adapts to the expected value for the operating system. That's generally more flexible than a Carriage Return.
    It looks to me like you're overusing control refnums. You don't need to use a control refnum and a property node to set or read a control's value if you can wire directly to the control's terminal.
    I really don't understand what you're doing with pause and variants. I may be missing the point, but it looks like you made this much more complicated than it needs to be. Why not keep it a boolean?
    For your pause-path, you open the file but never close it. You can lose data that way. You also open it using open function 3, create new file. You'll get an error if the file already exists.
    On a general note, your diagram would be easier to read if you were more selective in how you routed your wires: you have wires on top of wires, wires running under sub-VIs, wires running in the frame of a while loop, wires running under labels.
    I think there's a temptation to overuse sequences. I don't think you need one here. As I mentioned in my earlier message, case structures and shift registers will be more useful to you.

  • How can I print an 8x10 picture and not use the print tray

    I want to load photo paper into the regular paper tray and print but the system only prionts images onto the 4x6 paper. I've only had the printer one day and already I find it confusing, If I cannot print like I was able to using my old Epson printer, I think this ius the wrong hardware for me

    How can I print photo's larger than 4x6. The paper tray will not take a larger size photo pPer

  • How can I view/sort by email address not be the sender's name

    These days people often send emails from different devices and sometimes their display name is different on each. When I receive an email from them it may have their display name, or if this has not been set on say their phone I just see their email address. But when I try to search or sort it does not look at the underlying email address just the display name and so it appears like some of the emails are missing. Is there any way to view messages by the underlying email address and not their display name or what has been saved to my address book.
    Thank you - Marie

    This add-on lets you display the senders' or recipients' email addresses as a column in the Threads pane (message list):
    https://addons.mozilla.org/en-US/thunderbird/addon/show-address-only/
    [http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html How to install]
    Right-click a column button to select which columns are displayed, and click a column button to sort the list by that column.

  • How do i print email header, not just the body?

    I just got an HP Photosmart 5110 and am setting up eprint on a laptop with Windows 7 64-bit.  The eprint function is working fine, but it prints only the text of the email, not the full email including header.  How can I get it to print the header (i.e. "From, Sent, To, Subject").   Thanks.

    Appreciate the reply from fertileground and would ask that HP add an option for including header info with the content of a message.
    As a  practical matter the source and time of a message received overngiht or on weekend or  anytime of day is needed to file or even act on an item.   Fairly basic info.
    Let me know the best means to submit this request to the HP eprint managers  and I'll do so.
    rjw/mkc

  • MAC | Each time I open a new window with ctrl-n, the sidebar opens and then I have to manually close it. How can I do a ctrl-n and not have the sidebar open?

    no comment

    Do you have any Sidebar-related extensions installed?
    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • When replying to an email, how can my reply be permanently fixed to be at the top of the email and not at the bottom?

    Everytime I reply to an email, my reply is at the bottom. My clientele, looks for a response at the top of the email. Is there a way to permanently fix this? It is a nuisance to cut and paste at the top of the email each time I reply!

    From the Menu Bar select Tools-Account Settings-Composition and Addressing
    Set the reply option to Above the Quote
    No menu bar showing? Press the alt key.

  • How do I Make cr2 files to jpeg in photoshop elements 10? [was:files]

    How do I Make cr2 files to jpeg in photoshop elements 10? And why are my raw photos looking really pixilated?

    mgills2013 wrote:
    What is the difference between mRaw and sRaw?
    http://cpn.canon-europe.com/content/education/infobank/image_compression/file_types_raw_sr aw_and_jpeg.do

Maybe you are looking for