Creating a linked image in your email signature

Since you cannot add a URL link to an image directly in the Prefs/Signature window, do the following:
1. Open a new message window. Paste (or drag & drop) any suitable image. Highlight it.
2. Go to Menu>Edit>Link>Add... and type or paste your URL link.
3. Go to Preferences>Signatures and copy & paste the new linked image, along with any other info.
4. Assign your new signature to your account(s).
In my case, my email signature includes a "View my profile on Linkedin" button that people click on to go there.

I use this method:
http://smokingapples.com/software/tips/html-signature-apple-mail/
Message was edited by: Mac Fanatic

Similar Messages

  • Can you wrap an image with a link in an html email signature?

    When I cite a remotely hosted image in an html signature, and try to make that image a link, the link is ignored and the just the image is shown.
    e.g.:
    <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank">
    <img style=" position:absolute;
    height:30px;
    width:30px;
    left:172px;
    top:157.5px"
    src="http://png.findicons.com/files/icons/2779/simple_icons/48/facebook_48_black.png" alt="ubiquia facebook" moz-do-not-send="true"
    >
    </a>

    For each icon that you want to use in your email signature:
    locate icon on internet webpage - right-click on the icon and select 'Save Image as'. Save the icon to your computer in a suitable file.
    Then in Thunderbird
    insert > Image
    choose file - locate the saved icon on your computer
    click on Link tab and enter the www etc webpage link info
    click on OK to insert image with link.
    Codewise, where you have the actual icon you would need something stating where the icon is located:
    eg
    <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank">
    path to image saved on computer included in within <> </a>

  • How do you add a hyperlink in your email signature on the iPad?

    Is there a way to make some of the text in your email signature into a hyperlink on the iPad and even iPhone?

    Doing a Google Search provided this.  Check it out.  I may offer what you're looking for:
    http://itunes.apple.com/us/app/email-signature-lite/id318339426?mt=8

  • Creating URL links to imbed in emails ...

    Greetings:
    I'm trying to create a link to an APEX page to send out in the body of an email. I've used the APEX_UTIL.PREPARE_URL utility to create the f?p= and forward portion of the url, but I need to include the server portion of the url (https://apex.somewhere.com/pls/apex/) in the link. Is there an APEX function for retrieving this part of the URL?
    Thanks,
    Stan

    bondurs wrote:
    Greetings:
    I'm trying to create a link to an APEX page to send out in the body of an email. I've used the APEX_UTIL.PREPARE_URL utility to create the f?p= and forward portion of the url, but I need to include the server portion of the url (https://apex.somewhere.com/pls/apex/) in the link. Is there an APEX function for retrieving this part of the URL?
    Use the <tt>owa_util.get_cgi_env</tt> function to get the values of relevant CGI variables. (It's useful to set up a test page with a Dynamic PL/SQL region that calls <tt>owa_util.print_cgi_env</tt> to get an overview of the values available in your configuration.)

  • How do I create a hyperlink in my iCloud email signature?

    I have created an email signature in iCloud and would like to create hyperlinks for my websites. How do I do this in my email signature? I know I can click the www button on each email, but would like it to appear in the signature every time.

    You can add a URL to the signature in the iCloud mail preferences
    but not a hyperlink like this: Old Toad's Tutorials which can be done in Mail.
    OT

  • How do i create a linked image slideshow?

    I'd like to have asimilar linked image slideshow to the one at the top of this page...
    http://www.jdwetherspoon.co.uk/
    Any tips would be greatly appreciated thank you!!

    jQuery Sliders:
    http://basic-slider.com/
    http://nivo.dev7studios.com/
    http://wowslider.com/
    Google will reveal countless others.
    Nancy O.

  • Ios7 I want to include an image in my email signature. How?

    I have been trying to add an image to my signature on either my iPhone or iPad. Settings/mail/signature does show what I want, but only the text shows on an email aging with a very small square. I have tried many image sizes and formats.  Any ideas?

    With the native mail app, you can't (text only). you might check the App store for some alternate mail apps that might support this.

  • Problem creating an linking image

    Hi,
    i wrote an image processing servlet.
    The problem is that i store the processed image as jpeg in a file, but when i generate and send the html linking this image, image itself is not yet created, so resulting page doesn't display image.
    Is there any way for waiting creation of image before sending html linking it???
    This is the code, i use ImageJ library for image processing:
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            try {
                FileItemFactory factory = new DiskFileItemFactory();
                ServletFileUpload upload = new ServletFileUpload(factory);
                List FileItems = upload.parseRequest(request);
             Iterator i = FileItems.iterator();
             FileItem item = (FileItem) i.next();
             InputStream instream = item.getInputStream();
             BufferedImage img = ImageIO.read(instream);
                ImagePlus imp=new ImagePlus(item.getName(),img);
                imp.getProcessor().rotate(30.0);
                int quality=100;
                String path="....a path";
                BufferedImage   bi= (BufferedImage)imp.getImage() ;
                String rotatedImageName=item.getName()+"_rotated.jpg";
                try {
                    FileOutputStream  f  = new FileOutputStream(path+"/"+rotatedImageName);               
                    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(f);
                    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
                    param.setQuality((float)(quality/100.0), true);
                    encoder.encode(bi, param);
                    f.close();
                catch (Exception e) {
                    System.err.println(e.toString());
                out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " +
                  "Transitional//EN\">\n" +
                  "<HTML>\n" +
                  "<HEAD><TITLE>Upload Message</TITLE></HEAD>\n" +
                  "<BODY>\n" +
                  "<H1>this is processed image" +
                  "</H1>\n" +
                        "<img src=\"immagini/"+rotatedImageName+"\"width=\""+ imp.getWidth()+"\" height=\""+imp.getHeight()+"\" alt=\"3\">" +
                  "</BODY></HTML>");
                out.flush();
                out.close();
            } catch( Exception ex ) {
         }

    Problem solved.
    Error was that image were created in a wrong directory.
    I replaced orginal code for images directory path with this:
    String path=this.getServletContext().getRealPath("")+"/images";
    f= new FileOutputStream(path+"/"+rotatedImageName);
    .......................

  • My image in my email signature in Mail is resizing and becomes a lot smaller. According to the Graphic Designer, it's a Mail problem? Help!

    I have a business account and use a signature in Mail. Currently I copy and paste the words from a .docx and then copy and paste the image into the signature. I've just changed my picture and at first when I started typing an email and hit 'enter' the image would resize to smaller (about half the size). Some test emails to a bigpond email showed that the picture was showing up as an X.
    I readded the picture and in the signature in Preferences, it seemed the right size. But when I send a test email, the image is back to being small again.
    This is really frustrating me - I hope someone can help!

    check that pictures in mail are of actual size

  • How do you remove the space between the lines in your email signature?

    I have a problem with my signature in business catalyst mail.
    I have added a logo and my signature and when I send the email it looks good.
    There is the space between the lines that I want.
    But when the mail is received it looks like this:
    with too much space between each line. How do I fix this?
    Thank you in advance for you help and your time.
    Regards Winnie

    Hello,
    Well the good news is it looks like it's going to be some css and html issues the bad news (for most people) is it looks like it's going to be some css and html issues.
    Couple things.
    Are you looking at vertical or horizontal spacing?
    Region 1 in the shipped themes are used for breadcrumbs and usually have set vertical spacing and margins.
    Have you looked at the other layout examples in that application, there's 2 that show different ways of getting exact layout.
    Look at your page template there is an attribute called
    Region Table attributes
    if it looks like
    summary="" cellpadding="0" border="0" cellspacing="0" width="100%"
    change it to
    summary="" cellpadding="0" border="0" cellspacing="0"
    and see if that helps?
    If you can put an example on htmldb.oracle.com thats the easiest way to help you out, as a rule it's very hard to debug UI issues without seeing them.
    Carl

  • Adding a logo or image to a email signature

    What is the best file format to use as an image that will be most universal?
    .ai
    .eps
    .jpg
    .pdf
    .tif
    ??????

    Out of this list, I would recommend jpeg...
    Other files format are definitley not supported by most mail apps (even web browsers).

  • What is the best way to add multiple images with links into an email signature?

    I created an email signature with five linked images by:
    * creating new message
    • attached the image
    • adding link to the image
    • copied new email signature
    • under Preferences/Signature added the new signature
    It all works, but some of the emails bounced back. When we removed the images, the email went through.
    I  tried putting all the images into Photoshop and making it all one image, used the slice tool to create a link for each image and brought that single image into the signature, but that didn't work as separate links.
    Any suggestions?

    Hi Bob.
    So what I should have done on my PC for all my files is gone to the File menu and used the Package command which would have converted it into a file with the images in it so they wouldn't need to be relinked.
    From now on I will only be working on Mac (I gave away my PC) but I'm sure I could use a friend's pc (or at a later point install Windows on my Mac). But to use the Package command on PC I need to actually have the images in the correct folder on the PC right?

  • Image in an iPhone email signature?

    Is there a way to include a logo in an iPhone email signature?

    Hi, all.
    I've read you comments; and, here is the solution that works for me.
    Prerequisites: Gmail Account, Laptop or Desktop, and access to the Internet.
    1) Upload the picture (JPEG) you want to put in your iPhone email signature. 
    (You can upload the picture to your Twitter account, BLOGs, Flikr, or whatever website.)
    2) Go on the internet, and search for the picture you loaded to your website, as listed in Step 1.
    3) Click or visit that image from your search tool (e.g., Google or Yahoo!).
    4) When you click on your image, you will get a URL of your image in your address field of your internet browser (e.g., Safari).
    5) Copy that URL.
    6) Sign into your Gmail account, click settings, and get to your email signature box.
    7) Type in your signature text (e.g., name and contact information -- whatever text you want in your signature).
    8) Click on the Insert Image icon in the menu bar in the signature field box.
    9) Paste your link in the URL field; if the link is correct, your image will show up.
    10) Click enter after your image shows.
    11) Click the Save button for your email signature field box.
    12) Compose an email and send it to yourself.
    (In your Gmail, you will see your signature in the body of your email.)
    13) Access the email you sent to yourself, via your iPhone.
    14) Copy the selected signature from your email that you sent to yourself.
    15) Access the iPhone email signature page on your iPhone.
    16) Paste the signature, which includes your JPEG image.
    17) Shake your iPhone -- you will get a box that says, Undo Attributes.  Click Yes or Okay to undo attributes.
    18) Exit out of the iPhone email signature page.
    When you access your iPhone email to compose an email, you will see your signature, containing your image.
    This process works for me: iPhone 6 Plus iOS 8.1. 
    My signature still shows after one hour and 10 emails, which includes, sent, forward, and replies.
    Good Luck.  Ping me if you have questions.
    /s/ Alfonso Faustino
    www.AlfonsoFaustino.com

  • Adding logo or image to email signature

    I have added my logo (a jpeg image) to my email signature. When I send an email to someone else who is using an Apple mail program it opens up fine. However, when I send an email to someone who is using, for example, a yahoo mail account, the logo does not show up on the actual email, it shows as an attachment that must be clicked on to open.
    Does anyone know how to embed an actual logo/image onto an email signature so that it will be seen in an email regardless of what type of email program they are using without having to click on it? thanks

    Jessie,
    I would love to help you (and anyone else in your situation), but it seems I can't duplicate your problem. I read your post before going to work this morning, and I sent myself an email (from Mail at home to Lotus Notes at work) with a signature containing a JPEG. Notes, arguable the worst email client out there, showed the JPEG in-line.
    I don't have Outlook or Outlook Express, so I cannot test those, but I'd be happy to receive an email from you so I can see what comes across. You need to send it to my work email because that's the only place I have an email client other than Mail running. The address is dkiechle followed by an @-sign followed by amadeus.com.
    We can do the opposite as well: I can try to send a test email to one of the addresses that you used to see if my signature shows up with the graphics element in-line. Would be pretty instructive, I think. I can do this if you provide an address; however, I can only do it in a few hours from home as I don't have Mail here at the office.
    One interesting thing to check: in Mail, there's an option to "Always send Windows-friendly attachments". Can you check if it is enabled or disabled in your configuration of Mail?
    Daniel

  • Email signature Image vanish, empty box display. Please help

    I have added an image to my email signature. It was working fine and suddenly the image vanish with empty box. Tried several times, the empty box keep coming after I restart my IPAD. I was just did copy and paste the signature. Please help

    I have the same issue on my iPad Air running iOS 7.0.4, furthermore the settings keep crushing and quiting to home screen when I attempt to change this empty box in signature options.

Maybe you are looking for