Image Attachment instead of embedded image (for sending photos)

Hi,
Is there a way to make mail send photos as an attachment rather than as an embedded image in the email? My colleagues are using Lotus Notes at work. Everytime I send them photos, they complain to me that they are having a hard time downloading the pictures 'coz they cannot simply click on it and save.
thanks,
zurc

zurc,
I sent mail in text-only format and put attachments at the very end of the message. I think photos and images are shown inline when send in a message in formatted-text format.
Putting the files at the very end of the message prevents the mail being "split up" in several parts (body, photo attachment, and signature as attachment) which is also annoying for Windows users.
I have to admit that I don't know if this works with Lotus Notes, but you could give it a try.

Similar Messages

  • Anyway NOT to send images as an inline/embedded images with Mail

    Hi, I would like to know is there anyway or any Apps out there that would let me email pictures from the iPhone that is not inline/embedded images. This is starting to become an issue because at work Lotus Notes does not allow the receiver to save images that I send from the iPhone onto their computer because the images does not appear in an account. Instead the images are inline/embedded.
    If anyone have a solution to this without using additional programs for the user with Lotus Notes that would be great. Thanks!
    Message was edited by: tacsniper

    I have no idea, but a photo attached to an email with the iPhone's Mail client is not embedded in the message body. A photo attachment that appears inline or viewed in place in the message body is not the same as being embedded. Although the Mail.app on a Mac and the iPhone's Mail client displays photo/image attachments inline or viewed in place within the body of the message for received and sent messages, it depends on the recipient's email client if such an attachment appears inline or viewed in place when the message is opened, or if such an attachment must be opened separately to be viewed. Either way, it is sent as a true attachment to the message.

  • Image display: instead of an image, there is a "picture placeholder" icon

    Hello everyone!
    I'm afraid I need some assistance. As I've already indicated in a thread title, I have problems while trying to display an image stored within the database. I read zillion threads here on OTN, searched the Internet, but I can't make it work. More or less, it comes to what Denes Kubicek provided [url http://htmldb.oracle.com/pls/otn/f?p=31517:64:850093673123067]here
    Tools I use are Oracle 10g XE database (10.2.0.1.0) and Application Express (3.2.1.00.10).
    There's a table that contains information about certain products (such as printer toners, cartridges, CD media etc.). This is its description:
    SQL> desc pm_materijal
    Name                          Null?    Type
    ID                            NOT NULL NUMBER
    IDG                                    NUMBER
    SIFRA                                  VARCHAR2(30)
    SIFRA_KRATKA                           VARCHAR2(30)
    MODEL                                  VARCHAR2(30)
    NAZIV                                  VARCHAR2(255)
    NAPOMENA                               VARCHAR2(255)
    FILE_NAME                              VARCHAR2(200)
    MIME_TYPE                              VARCHAR2(255)
    BLOB_CONTENT                           BLOBOne of its records looks like this (other column values are unimportant) (columns are formatted so that they fit a single line):
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50 Now I'd like to attach an image to those CDs.
    In my Apex application, I created an item (on a page 7) whose name is P7_BROWSE (Display as "File Browse") - it is used to browse directories for files (images, actually). In order to support table record updating, I created a Process (Process point: On submit - after computations and validations).
    if :p7_browse is not null then
       update pm_materijal set
         (mime_type, file_name, blob_content) =
         (select
            mime_type, name, blob_content
            from wwv_flow_files
            where name = :p7_browse
         where id = :p7_id;
       delete from wwv_flow_files
         where name = :p7_browse;
    end if;It seems that it works OK, because - once I select an image (it is a JPG file, its size is 116 x 116) and push the "Apply Changes" button - the result is as following:
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50   F477411270/cd_50_komada.jpg                 2111           My next step was to create a stored procedure which will be used to display images:
    SQL> create or replace procedure image_display (p_id in number)
      2  as
      3    l_mime        varchar2 (255);
      4    l_length      number;
      5    l_file_name   varchar2 (200);
      6    l_blob        blob;
      7  begin
      8    select mime_type,
      9           blob_content,
    10           file_name,
    11           dbms_lob.getlength (blob_content)
    12      into l_mime,
    13           l_blob,
    14           l_file_name,
    15           l_length
    16      from pm_materijal
    17      where id = p_id;
    18
    19     owa_util.mime_header (nvl (l_mime, 'application/octet'), false);
    20     htp.p ('Content-length: ' || l_length);
    21     owa_util.http_header_close;
    22     wpg_docload.download_file (l_blob);
    23  end image_display;
    24  /
    Procedure created.As suggested in a few OTN threads, I did this too (although I don't quite understand WHY, as I created the procedure in a schema I use in Apex; there are no other users involved). Anyway: I thought that it won't do any harm (but it didn't do any good either).
    SQL> grant execute on image_display to public;
    Grant succeeded.
    SQL> create public synonym image_display for radni.image_display;
    Synonym created.Back to Application Express: I created a Reports Region (Type: SQL Query). Its source is :
    select
      id,
      file_name,
      mime_type,
      dbms_lob.getlength(blob_content) len,
      '<img src="#OWNER#.image_display?p_id='
             || NVL (ID, 0)
             || '" height="'
             || 120
             || '" width="'
             || 120
             || '" />' image
    from pm_materijal
    where id = :P7_IDFinally, run the page! Reports region contains a single record which displays information I selected in SQL*Plus (so it seems that query DOES return something, and - I'd say that it is correct), but - instead of an image - there's an "invalid (broken) image" icon (you know, a small white rectangle with a red <font color="red">x</font>).
    I can't figure out what I did wrong. It should work, but it doesn't. Could someone, please, point me to the right direction?
    Regards,
    LF

    Patrick said: specify your schema name instead of the #OWNER# placeholder
    I said: while I was trying to make it work, I used "schema_owner.procedure_name" notation too but that didn't help eitherOracle user name is "RADNI" (the one I used to create objects, I was connected to it in SQL*Plus - all my previous copy/pastes were taken while connected to that user).
    So I tried with
    - <img src="radni.image_display?p_id=...   => didn't work
    - <img src="RADNI.image_display?p_id=...   => didn't work
    - <img src="image_display?p_id=...         => worked
    {code}
    I just started using Application Express so, basically, every day I discover something new. I purchased a book (based on Apex 3.2) so I thought that I'd rather stick to it until I +get a feeling+ and then, hopefully, move on to a higher version.
    By the way, looking forward to see you on HrOUG in two weeks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Loading image name instead of the image

    Hi all,
    Sorry but i'm a little new to AS3 and flash and have come to an abrupt halt.  I have a database (phpMyAdmin 2.6.0-beta2 ) which holds information which i want to display in a flash form so i'm using an XML file to bridge the gap.  After building the application in FLASH and running it the text from the database comes through but no the images.   Details of what i'm trying to do are as follows:
    The XML file
    <?php echo "<?xml version='1.0' encoding='ISO-8859-1'?>"?>
    <catalogue>
    <?php do { ?>
    <fish>
      <Id><?php echo $row_all_fish['ID']; ?></Id>
         <Name><?php echo $row_all_fish['Name']; ?></Name>
            <Description><?php echo $row_all_fish['Description']; ?></Description>
            <Price><?php echo $row_all_fish['Price']; ?></Price>
            <Image><?php echo $row_all_fish['Image']; ?></Image> 
    </fish>
    <?php } while ($row_all_fish = mysql_fetch_assoc($all_fish)); ?>   
    </catalogue>
    <?php
    mysql_free_result($all_fish);
    ?>
    The action script part from FLASH
    xmlObject = new XML();
    xmlObject.onLoad = readMedia;
    xmlObject.ignoreWhite = true;
    // **************vvvvvvvvvvvvvvvvEdit this bitvvvvvvvvvvvv*********************************
    xmlObject.load("http://localhost/fishing/generate_xml.php");
    // ***************^^^^^^^^^^^^^^^Edit this bit^^^^^^^^^^^^*********************************************
    stop();
    function readMedia(success) {
    if (success == true) {
      // Root node
      rootNode = xmlObject.firstChild;
      // id = number of child nodes
      sizeOfCollection = rootNode.childNodes.length;
      // Current node = first child node
      currentNode = rootNode.firstChild;
      // Display next car.
      drawItem();
    function drawItem() {
    // **************vvvvvvvvvvvvvvvvEdit this bitvvvvvvvvvvvv*********************************
    Id.text = currentNode.childNodes[0].firstChild;
    Name.text = currentNode.childNodes[1].firstChild;
    Description.text = currentNode.childNodes[2].firstChild;
    Price.text = currentNode.childNodes[3].firstChild;
    Image.text = currentNode.childNodes[4].firstChild;
    // ***************^^^^^^^^^^^^^^^Edit this bit^^^^^^^^^^^^*********************************************
    debug();
    nextFish.onRelease = function() {
    nextNode = currentNode.nextSibling;
    if (nextNode == null) {
      break;
    } else {
      currentNode = nextNode;
      drawItem();
    previousFish.onRelease = function() {
    nextNode = currentNode.previousSibling;
    if (nextNode == null) {
      break;
    } else {
      currentNode = nextNode;
      drawItem();
    // Read Greens XML file.
    Greens.onRelease = function() {
    // **************vvvvvvvvvvvvvvvvEdit this bitvvvvvvvvvvvv*********************************
    xmlFile = "http://localhost/fishing/generate_xml.php";
    // ***************^^^^^^^^^^^^^^^Edit this bit^^^^^^^^^^^^*********************************************
    xmlObject.load(xmlFile);
    function debug() {
    // **************vvvvvvvvvvvvvvvvEdit this bitvvvvvvvvvvvv*********************************
    Id = currentNode.childNodes[0].firstChild;
    Name = currentNode.childNodes[1].firstChild;
    Description = currentNode.childNodes[2].firstChild;
    Price = currentNode.childNodes[3].firstChild;
    Image = currentNode.childNodes[4].firstChild;
    // ***************^^^^^^^^^^^^^^^Edit this bit^^^^^^^^^^^^*********************************************
    stop();
    I can not workout how to display the image itself instead of the files name.  Any help anyone can give would be great!
    Thanks for your time helping me.

    that's actionscript 2.
    and, is there an image url in there somewhere?

  • Removing email sugesstion for sending photos

    Hi,
    I'm posting this because I'm nearly going nuts every time I send a captured photo by using my N86's built in photo sending option (I view the image and in the toolbar select Send with the envelope icon).
    I choose to send my photo by email, and when I get to entering the email adress, I get 2 suggestions for email adresses - my old email adress and my new one. This is annoying because I quite often by accident pick the old email adress (the adresses are almost the same) from the list and can't understand why I don't receive my photo, until I check and find out I sent it to the wrong adress
    Is there some way to remove these suggestions? And how?
    Hope some of you here can help - thanx in advance.
    /MinnieMax
    Solved!
    Go to Solution.

    The email adress isn't for a contact - I have just typed it in when I wanted to send a photo to my email adress.
    The thing is, I get 2 suggestions when I start typing my email adress when I want to send a photo. One suggestion is for my current adress, the other suggestion for my former, which I don't use anymore.
    The adress I use now is the one I use for my mail box on the phone. The other (the old adress) has never been used on the phone besides when I have been sending photos by viewing the image in Photos and then selecting Send (the envelope icon) and send Via e-mail.
    Hope that makes sense?

  • How to "Save Image" directly instead of "Save Image As"?

    Is there anyway or option to directly save images instead of having to click "save image as" then go into the popup to save the image location? Thank you!

    Gingerbread Man made good suggestions.
    However you still must "save as" something even if "unnamed001". Windows requires a name and location for each file (whether an image or other file) saved. You can have the same file name in different directories (folders).
    You can copy and paste images without saving, in some applications.

  • Help with embedding Javascript for Lightbox Photo Gallery in Muse!

    Hi all:
    I am fairly new to Muse and I have been having trouble finding relevant information for embedding Javascript in order to get a lightbox to work in Muse. Would anyone be able to walk me through embedding the Javascript for the Lightbox Photogallery for Picasa in Muse?
    This is the code I want to use: Lightbox Photo Gallery and Slideshow for Picasa
    And this is the look I am trying to accomplish within my Muse site: Cycling Around The World / January 2006 / Picasa Template by www.paulvanroekel.nl
    Any help would be appreciate. Thanks much,
    Alexis

    Hi,
    I have tried inserting the script that you have pasted above as HTML on my test site and it worked.
    What happens is whenever you insert something as HTML, Muse by default creates a div tag and places the content within the div tag. What I have done differently is I have inserted the JS with in the <script> tag and it has inserted the Javascript in this manner,
    I beleive that since this a browser re-direct script that you are using, you would like to place this in the head section and not in the body tag, however, that is certainly not possible using Muse as it does not allow access to the code it generates as a muse file.
    You, can still export the pages as HTML and make the appropriate changes there before uploading to the server.
    Hope that helps.
    Regards,

  • Is there a way to tell the difference between an attached file, and an image that is embedded in an email?

    When Outlook receives an email, it appears that attached files and embedded images are carried as Attachments.  In looking at emails and the individual attachments/embedded images with Outlook Spy, I do not see anything that would tell me which is
    which.  Obviously Outlook knows the difference ... is there something that I'm missing?mdpowers

    Hi Ken,
    In my code i have something like that:
    public static bool IsEmbeddedAttachment(Outlook.Attachment attachment)
    //Anexos que não são embedded são obrigatóriamente olByValue, porém os embedded podem ser de qualquer tipo
    if (attachment.Type != Outlook.OlAttachmentType.olByValue)
    return true;
    //Busca a propriedade contentID do anexo. Anexos embedded não precisam necessáriamente gerar um ContentID. Anexos fixos não geram ContentID
    string strATTACH_CONTENT_ID = attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x3712001E").ToString();
    //Busca a propriedade contentLocation. Para que o anexo seja embedded é necessario que essa propriedade esteja vazia ou nulla
    string strATTACH_CONTENT_LOCATION = attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x3713001E").ToString();
    if (!string.IsNullOrWhiteSpace(strATTACH_CONTENT_ID) || !string.IsNullOrWhiteSpace(strATTACH_CONTENT_LOCATION))
    //Busca a propriedade AttachFlag se for diferente de 4 é uma imagem embedded
    if ((int)attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x37140003") == 4)
    return true;
    if ((int)attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x37050003") == 6)
    return true;
    if ((int)attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x37140003") == 4)
    return true;
    return false;
    And was working very well until last week. 
    I have a problem with a single email. This email attachments possess 2 PDF type files. These files are not embbed in the email, but they have the contentId property. Could you tell me why? or if its possible discovery why this happens?
    PS.: Sorry about my english.
    Att's,
    Anderson Rissardi.

  • Embedded images not showing up as Attachments!!!

    The issue is when an inline embedded image within an email arrives, it does not show up as an attachment. This used to happen, however I migrated from Exchange 2003 to Exchange 2010 and this has changed.
    My question is how do I configure exchange or outlook to create the attachment when the embedded image is in the body of the email?
    Any help is appreciated. Thank you in advance!
    Thomas

    Hi,
    By "it does not show up as an attachment", do you mean it doesn't show the paperclip icon in Outlook?
    Are you inserting the image using Insert tab > Pictures? If this is the case, Outlook won't show the paperclip icon or list these images as separate attachments by default. You said "This used to happen", did you use Outlook as email
    client before? If not, which email client did you use?
    If you want to show the paperclip icon in Outlook, the only way I know is to add the image via Insert > Attach File.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Viewing images attached to songs

    Some of my music library have multiple images attached to each song. For example, the latest Nine Inch Nails album "The Slip" has a 'cover' image, plus an image for each track. When viewing tracks on the iPod I can see the cover image on the album browser, and when Im listening to tracks 2-10 I can view the image associated with the track; but when listening to track 1, I cna only see the album cover, not the other image that is attached to it.
    Any idea who you can view multiple images that are attached to music files? I assume there is a way, as if not why would Apple include the option to store multiple images and have them synced to an iPod!

    have wondered this for a while, haven't seen a way to do it though.

  • I am having a problem sending photos by way of the share facility in iPhoto.  I have looked in accounts and i cloud is not listed as an option.  I removed MobileMe and reloaded it and that enabled me to send the photos but then the email didn't arrive

    When I first tried to email photos from the share facility of iPhoto 9.2.3 I received a message something along the lines of server didn't recognise your id and password.  Read other peoples posts that suggested removing and reloading icloud in the iPhone account section.  No icloud in my accounts  just email and mobile me so I removed and reloaded mobile me.  After that I sent a test email to myself.  It arrived eventually but disappeared the instant I tried to open it.  Shut down my Macbook completely and then switched it on again with exactly the same results.  I am using OS X 10.7.4.  Can anyone tell me how to get icloud as an option for my iPhoto emails?  I use icloud for my normal emails.

    I've resolved my problem now.  It wasn't iphoto: preferences:@ that I needed but iphoto:preferences:general where there is the option to choose email for sending photos.  Can't believe I missed that before.

  • Difficulty sending photos through iPhoto 11 often get a connection error.  When I go to my email and copy the photos in email the emails go out always with never a problem

    I have difficulty sending photos through iPhoto 11 often get a connection error.  When I go to my email and copy the photos in email the emails go out right away and never seem to have a connection problem?  Why did they cahnge the process for sending photos form iphoto?

    It is an addition option some people like and other do not (I do not)  --  to use it as always is trivial - in the iPhoto preferences set Apple Mail as the e-mail client
    LN

  • I just downloaded Photos and I have lost the ability to easily send photos by email via Outlook.  Any suggestions?

    I just downloaded Photos and I have lost the ability to easily send photos by email via Outlook.  Any suggestions?

    If you use Mac Mail and Microsoft Outlook mail like I do, you could switch from one to the other mail program for send photos.
    iPhoto  >>  Preferences  >>  General tab  >>  E-mail foto's via  >>  select Microsoft Outlook.
    Click a photo  in iPhoto  >>  Share  >>  select E-mail …   >>  Microsoft Outlook will be launch.

  • Iphoto sending photo per email with entourage

    dear all, since when I updated online the mac applications (all of them), I can't choose anymore Entourage for sending photos per email from iphoto: the only choice I get is Mail (that I do not use). I have already disselected Mail as preferred application, but the Entourage name on Iphoto preferences always appear in a grey colour and I can not select it.
    can anybody help me to get back to my previous situation? thank you very much to the angel who will help me
    alevina

    Alesssandra
    Since you installed all those updates, I suggest you try these procedures to get things back to normal:
    1. Restart your computer to repair the directory if needed.
    2. Run "Repair Permissions" from Disk Utility located in your Applications>Utilties Folder.
    3. Try iPhoto again. If it doesn't work then QUIT iPhoto.
    4. Your iPhoto preferences file may be corrupted.
    (MAKE SURE you QUIT iPhoto first)
    You will find it in your Home directory:
    (Home/your account) >Library>Preferences>com.apple.iPhoto.plist
    Remove or trash the preference (.plist file) and restart iPhoto.

  • I have Windows 7, Microsoft Outlook and PSE 13. I have used the "Share photos as embedded images" feature frequently, but today when I went to use it, it wasn't there, only the option to send email with files attached. How do I get back the ability to sen

    I have Windows 7, Microsoft Outlook and PSE 13. I have used the "Share photos as embedded images" feature frequently, but today when I went to use it, it wasn't there, only the option to send email with files attached. How do I get back the ability to send emails with photos embedded. I like adding the frames and backgrounds and I think it's easier for recipients to look at the photos. Thanks for any suggestions of things to try.
    Gail

    I had a similar problem in that my wife's iphone 5 could not send pics with imessage.  Had to set the settings to default to SMS or whatever.  After laboring many hours on the web I coincidentally was on the phone with the internet people to question my internet speed.  They changed the router channel, which is something that I am capable of doing myself.  After that, the pics go over imessage.  My own Iphone didn't have the problem.  We are both latest IOS 7.0.6.

Maybe you are looking for

  • Function modules for Classifications

    Hi Sapall. here iam have got some abap technical work to do on classifications. before creating new tasks i just looked at some of the  existing programs in Material management and classification. i have observed  that  most of the programs are using

  • Getting Cursor for Table control while scrolling

    Hi Experts, I am displaying 3 pages of records using table controls, and when i double click on the record, i have to display some pop up based on the values present in the particular record, this is done by getting the line number of the record usin

  • TS1367 Will reinstalling the memory card from my MacBook pro erase my saved data?

    Will reinstalling the memory card from my MacBook pro erase my saved data? My MacBook pro that I purchased in mid 2010 has been having some issues lately. It's been running slow, which is very irregular since in 2010 I spent a lot of money to get the

  • Aperture 3.4.1 Zoom out at 25% not working

    Hi, I just remarked that the Zoom Out at 25% with Aperture 3.4.1 doesn't work any more...the maximum Zoom Out is now fixed to the size of the window. I'm pretty sure that this worked on Aperture 3.4 though. While not a big problem, I like to view my

  • My backup won't run

    And I get the message ending in "already in use". But it isn't and I have tried disconnecting and power cycling it.