How To Create Link in Image in Email

I have an eMail campaign that a client wants to send out. Essentially, it is a jpeg ad (that they would like to embed into the email) and there is a spot in the ad where their web address is listed. They want to make the web address a live clickable link. Is there a way to do this in Mail? Or can I do it in Adobe ImageReady and then bring it into Mail somehow?
Thanks in advance for your help!!! : )

I actually did quite a bit of searching and found a very easy way to do it:
Do the image/html work however you want (photoshop/indesign/dreamweaver) load the final html file in a browser and hit “Command + I” which will automatically bring up a new Mail window with the html file embedded right in there. Adjust subject as necessary and send away. It’s not perfect, but it’ll work for smaller e-blasts.

Similar Messages

  • I feel like a rookie but, can someone tell me how to create links to external URLs in Muse?

    I want to attach the link to text which gives the name of the site. I am not an idiot, just unfamiliar with the program. I have looked through the learning videos but cannot find anything that specifically relates to my question. I appreciate any help I can get. Thank you, in advance, for any assistance.
    Sue

    I am unable to open the screen shots as I keep getting a message saying that I am not using the correct program. Can you tell me which program I should use? Thank you.
    Sue
    Date: Mon, 22 Jul 2013 10:48:46 -0700
    From: [email protected]
    To: [email protected]
    Subject: I feel like a rookie but, can someone tell me how to create links to external URLs in Muse?
        Re: I feel like a rookie but, can someone tell me how to create links to external URLs in Muse?
        created by spudsmurphy13 in Help with using Adobe Muse CC - View the full discussion
    good question sue, and well done to all for how to do links.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5527823#5527823
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5527823#5527823
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5527823#5527823. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to create Links dynamically

    Hello,
    I've tried for several days to create links dynamically, and
    I can't get it work out.
    Here is what my application do : in a
    viewstack, I create dynamically some
    canvas as children of the viewstack. The number of canvas
    depend on the number of items in an arraycollection.
    Creation of a canvas (included in a "for" loop):
    Objet_Courant = Curseur.current;
    var canvas_cible:Canvas = new Canvas;
    canvas_cible.id = "CN_"+i;
    canvas_cible.width = 315;
    canvas_cible.height = 160;
    ViewStack_cible.addChild(canvas_cible);
    I inject content in each canvas the same way :
    var newModele:Text = new Text;
    newModele.id = "MODELE_"+i;
    newModele.text = (Objet_Courant.modele) as String;
    canvas_cible.addChild(newModele);
    And now my question (at last) : I would like to create links,
    for example on the text item. The URL of the link would come from
    the arraycollection, as the other datas I use.
    Does anyone have a clue for this ?
    Thanks in advance.

    I still get stuck with this problem, even several months
    after... I had the same problem with creating links on images, when
    I dynamically create Tilelists with images as an ItemRenderer. How
    can we associate links with the images ?
    Any kind of help would be great :)

  • How to create a background image for each item in a List object

    Hello.
    I am trying to create a background image that displays whenever a user posts something to a list.  For example when a user posts text it would appear in a list.  The new item in the list would contain a specific background image with the users text appearing on top of the background image.  I do not want a background image for the entire list, rather each item within the list.
    I am not sure how clear this is so I added an image below.  When a user enters text in and clicks the "post-it" button their text would appear below with the sticky note background. 
    I am not sure which list type would be best for this problem or how to create insert the image, so I am open to suggestions. 
    Thank you for your help.  Any advice or guidance will be greatly appreciated!

    Hi
    the easiest way would be with itemRenderer.
    You have to do two things:
    1. In your list declaration use a item renderer: <mx:List itemRenderer="myRenderer"/>
    2. create a flex component myRenderer that will be the single item. This can be a canvas with a background image and a text field on it.
    When you add a new item to the list, a new myRenderer item will be created and the data property will be passed to it. So you have to put "data" in your textField.
    If you need more help try looking at Tour de Flex samples, they're pretty easy.
    Andrei

  • How to create dvd/cd image using super drive in MacBook Air

    I have MacBook Air and also Apple Supper drive for the same. can u help me to find dvd/cd burrning and copy software. and also guide me "how to create dvd/cd image using super drive in MacBook Air"

    First to create a video DVD you need to use DVD authoring software like iDVD.  You can purchase it from the online Apple Store while supplies last.
    For creating a disk image use Disk Utility.
    To burn items to a CD or data DVD just insert the disc in the optical drive and drag those items onto the disc icon on the Desktop.  Then drag the disc icon to the Trash icon in the Dock which changes to a Burn icon.
    OT

  • How to create links in table view

    Hi
    I am working in IC WebClient.
    Can any body guide me how to create link on particular column of the table view and How can we navigate to another page by clicking on this link ?
    I am filling the internal table (for table view) by z tables. I do not have context node for that.
    Points will be rewarded.

    use Iterators. In the itarator you can create any BSP Object you wish to.
    in the method RENDER_CELL_START of the interface IF_HTMLB_TABLEVIEW_ITERATOR
    METHOD if_htmlb_tableview_iterator~render_cell_start.
      DATA: lo_text     TYPE REF TO cl_htmlb_textview,
            lo_link TYPE REF TO cl_htmlb_link,
            lv_link_click TYPE string,
            lv_link  TYPE string,
            lv_dim   TYPE string,
            lv_pernr TYPE string.
      FIELD-SYMBOLS: <dat> TYPE ANY.
      lv_link  = 'info.htm?pernr='.
      lv_dim   = 'left=300,top=220,width=620,height=200,menubar=0,scrollbars=yes,resizable=no'.
      row_ref = p_row_data_ref.
      CASE p_column_key.
        WHEN 'PERNR'.
          CREATE OBJECT lo_link.
          lo_link->id            = p_cell_id.
          lo_link->text          = get_column_value( p_column_key ).
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
            EXPORTING
              input  = lo_link->text
            IMPORTING
              output = lv_pernr.
          CONCATENATE `window.open('` lv_link lv_pernr `' , '` lo_link->text `', '` lv_dim `');` INTO lv_link_click.
          lo_link->text = lv_pernr.
          lo_link->onclientclick = lv_link_click.
          p_replacement_bee      = lo_link.
        WHEN OTHERS.
          CREATE OBJECT lo_text.
          lo_text->id       = p_cell_id.
          lo_text->wrapping = 'FALSE'.
          lo_text->text     = get_column_value( p_column_key ).
          lo_text->design   =  'STANDARD'.
          p_replacement_bee = lo_text.
      ENDCASE.
    ENDMETHOD.
    How to use Iterators.
    /people/brian.mckellar/blog/2003/10/31/bsp-programming-htmlb-tableview-iterator
    Hope this helps.
    Cheers
    Amandeep
    <i><b>Reward points for each helpful answer.</b></i>

  • How to create links to other pages i create??

    I have finished my "homepage" and it has 5 buttons on it.("home",
    "Contact us", etc.).
    I have no idea how to create links to other pages i create.
    For example, if the user clicks on "Contact us", i wnat contact information
    to appear. So, do i create another html document that will contain contact
    information and then call that page whenever the user clicks "Contact us". Or
    do i just create another applet that contains contact information and display
    the applet in the appropriate area, whenever the user clicks "contact us".
    Hope that wasnt confusing. Bascially, I am sitting here looking at my buttons, not knowing
    what code to put under the actionPerfomed part of each button.
    thanx
    trin

    ... judging from your question... the best way i think is to create another page...
    .... so when ur user clicks on Contact Us..... he/she will be taken to another page...
    there are other techniques besides this.... but it is always better to stick with the easiest one
    ... so you need to create separate pages for all of your links....
    ... if you have any questions... let me know
    .... have fun

  • How to create links and how to use that links to go to other pages?

    my question is....how to create links...i mean by using make link option.....when we do right click on a word,etc in the design view.....and my other question is.....how to use that links to go to other pages.....i mean when i click on a link...it takes me to another web page.....

    Please do not post the same subject to more than one forum.

  • How to create links to the same page, how to create links to the same page

    How to create link to the same page with iweb?
    Thanks

    You're referring to anchors.  There are a couple of ways. These topics discuss them:
    iWeb FAQ - Anchors
    How do i hyperlink to certain portion...: Apple Support Communities
    OT

  • How to create links betwen two documents in KM?

    how to create links betwen two documents in KM?

    If you use the KM provided HTML editor, there is an option to provide a link to another KM document from one KM document.
    Else if its an uploaded HTML, create a link like this:
    <a href="/irj/go/km/docs/documents.....">CLICK</a>

  • Spry Photo Gallery - How to add links to images

    I was wondering if any one knew how I could add individual
    links to images on the spry Photo Gallery—An XML-based photo
    gallery. I need each image to have its own individual link when
    clicked on. Any assistance would be most helpful.

    Hi,
    In the dashboard --> edit option u can see dashboard object here u can see folder ...by this folder u just include dashboard page other wise in the catalog share folder u need create each and evry module pre planned folder then save it each dashboard pages to relevent module folder.
    THanks
    Deva

  • How to create links in navigation tabs?

    This is probably a silly question.  In the other template I use, (which is a spry asset, and this is likely the difference), I select the area and the "properties" area below becomes available, and I can create the link.
    These particular tabs don't do that . . . how can I link them to other pages in the site?
    http://asptfacultycaucus.info/#
    Thanks for any help!
    Pamela

    Jtanna,
    this seems to have totally fixed the navigation problem.  I was very careful to use the code you suggested, and not delete or add anything else.
    However, I HAVE goofed something up in getting the stylesheet saved to the directory.  Now when I open the index and other pages in DW, they do not appear to be "connected" to a stylesheet!  When I click on "stylesheet.css" in the menu tabs, I get this dialogue in yellow:  " 'stylesheet.css' cannot be found.  If the file exists on the server, use the Files panel to get the file from the server."
    The file exists right in the directory under local files in DW.  It exists in the "publish" folder.
    I'm afraid to make further changes . . . and client is getting cranky . . . help?
    http://asptfacultycaucus.info/#
    Here is the stylesheet as it exists right now (code for the design template follows if that helps at all):
    @charset "UTF-8";
    /* --- CSS Document by Codify Design Studio - codifydesign.com --- */
    body {
        margin: 0px;
        color: #666;
        font-size: 12px;
        font-family: Arial;
        font-family: Arial, Verdana, Univers;
        background-color: #545454;
        background-image: url(images/page_bkgd.jpg);
        background-repeat: repeat-x;
    h1 {
        color: #4F6179;
        font-size: 24px;
        font-weight: normal;
        margin: 3px 0px 25px 0px;
    h2 { color: #333333; font-size: 14px; font-weight: normal; margin: 0px 0px 15px 0px; }
    a          { color: #ba7007; }
    a:visited  { color: #ba7007; }
    a:hover    { color: black; }
    .container {
        width: 980px;
        margin-left: auto;
        margin-right: auto;
        background-image: url(images/content_bkgd_tile.jpg);
        background-repeat: repeat-y;
    /* BANNER AREA */
    .bannerArea {
        width: 980px;height: 145px;
        background-color: #4971a2;
        background-image: url(images/banner_bkgd.jpg);
        background-repeat: no-repeat;
    .bannernav {
        padding-top: 10px;
        padding-right: 40px;
        float: right;
        color: white;
        font-size: 10px;
        font-family: Arial, Helvetica, Verdana, sans-serif;
    .bannernav a {
        color: white;
        text-decoration: none;
    .bannernav a:visited {
        color: white;
    .bannernav a:hover {
        color: #ECBB7B;
    .toplogo {
        margin-left: 70px;
        padding-top: 20px;
    .content {
        padding-top: 20px;
        padding-bottom: 20px;
        background-image: url(images/content_bkgd.jpg);
        background-repeat: no-repeat;
    /* LEFT NAVIGATION */
    .leftnavigation {
        width: 192px;
        margin: 70px 0px 0px 0px;
        padding-left: 8px;
        float: left;
        list-style-type: none;
    .leftnavigation a{
        margin-left: 0px;
        width: 156px;
        padding-left: 15px;
        padding-top: 5px;
        padding-right: 20px;
        padding-bottom: 5px;
        float: left;
        color: #364957;
        font-size: 10px;
        font-weight: bold;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        text-decoration: none;
        background-image: url(images/nav_normal.jpg);
        background-repeat: repeat-x;
        background-position: 0px 0px;
        border-bottom: 1px solid #999;
    .leftnavigation a:visited{
        color: #364957;
    .leftnavigation a:hover{
        color: #ffffff;
        background-image: url(images/nav_down.jpg);
    /* CONTENT AREA */
    .contentleft {
        width: 440px;
        padding-left: 30px;
        padding-right: 20px;
        float: left;
    .contentright {
        padding-top: 55px;
        float: left;
        width: 210px;
    .imageright {
        margin-top: 10px;
        margin-left: 10px;
        float: right;   
    .imageleft {
        margin-right: 10px;
        float: left;
    /* FOOTER AREA */
    .footerArea {
        width: 980px;height: 88px;
        background-color: #cfcfcf;
        background-image: url(images/footer_bkgd.jpg);
        background-repeat: no-repeat;
    .copyright {
        border-top: solid;
        border-color: #737a90;
        border-width: 2px;
        margin-left: 240px;
        margin-right: 30px;
        padding-top: 12px;
        color: #666666;
        font-size: 10px;
        font-family: Verdana,Arial, Helvetica, sans-serif;
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
        <head>
        <!-- TemplateBeginEditable name="doctitle" -->
        <title>Part-time Faculty Caucus</title>
        <!-- TemplateEndEditable -->
    <meta name="description" content="Designed and developed by Codify Design Studio - codifydesign.com" />
            <link rel="stylesheet" type="text/css" href="../stylesheet.css" />
            <!-- TemplateBeginEditable name="head" -->
            <!-- TemplateEndEditable -->
        <script src="../SpryAssets/SpryAccordion.js" type="text/javascript"></script>
        <link href="../SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
        <body>
            <div class="container">
                <div class="bannerArea">           
                    <div class="bannernav"><a href="#" >Privacy Policy</a>  |  <a href="#" >Contact Us</a>  |  <a href="#" >Site Map</a></div>
                    <div class="toplogo"><a href="#"><img src="../images/transparent.gif" width="365" height="90" border="0" /></a></div>
                </div>
                <div class="contentArea">
                    <ul class="leftnavigation">
                        <li><a href="officers.html" >Officers</a></li>
            <li><a href="bylaws.html" >Bylaws</a></li>
            <li><a href="resolutions.html" >Resolutions</a></li>
            <li><a href="documents.html" >Documents</a></li>
            <li><a href="publications.html" >Publications</a></li>
                    </ul>
                    <div class="content"><!-- TemplateBeginEditable name="content" -->
                        <div class="contentleft">
                            <h1>Lorem Ipsum dolor sit amet</h1>
                            <img src="../images/content_photo_1.jpg" width="193" height="150" border="0" class="imageright" />
                            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sedpharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id <a href="#">velitvitae ligula</a> volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer. Sed aliquam, nunc eget euismod ullamcorper, lectus nunc ullamcorper orci, fermentum bibendum enim nibh eget ipsum. Donec porttitor ligula eu dolor. Maecenas vitae nulla consequat libero cursus venenatis. Lorem ipsum dolor sit amet. </p>
                            <img src="../images/content_photo_2.jpg" width="163" height="141" border="0" class="imageleft" />
                        <p>Consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus neque, id pulvinar odio lorem non turpis. Nullam sit amet enim. Suspendisse id velit vitae ligula volutpat condimentum. Aliquam erat volutpat. Sed quis velit. Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien.</p>
                            <p>Nulla libero. Vivamus pharetra pos uere sapien. Nam consectetuer. Sed aliq uam, <a href="#">nunc eget euismod ullamcorper</a>, lectus nunc ullamcorper orci, fermentum bibendum enim nibh eget ipsum. Donec porttitor ligula eu dolor.</p>
                        </div>
                    <!-- TemplateEndEditable -->
                        <div class="contentright">
                            <div id="SpryAccordion1" class="Accordion" tabindex="0">
                                <div class="AccordionPanel">
                                    <div class="AccordionPanelTab tabTop">
                                        <div class="accordion_340_tab"> TELLUS PROIN EU ERAT </div>
                                    </div>
                                    <div class="AccordionPanelContent">
                                        <div class="acontent">
                                            <p>Nulla facilisi. Nulla libero. Vivamus pharetra posuere sapien. Nam consectetuer. Sed aliquam, nunc eget euismod ullamcorper, lectus nunc ullamcorper orci, fermentum bibendum enim nibh eget ipsum. Donec porttitor ligula eu dolor.</p>
                                        </div>
                                    </div>
                                </div>
                                <div class="AccordionPanel">
                                    <div class="AccordionPanelTab middleTab">
                                        <div class="accordion_340_tab"> HOW LONG DO THEY LAST?</div>
                                    </div>
                                    <div class="AccordionPanelContent">
                                        <div class="acontent">
                                            <p>The majority of part-time instructors teach for about seven years before leaving to find other employment</p>
                                        </div>
                                    </div>
                                </div>
                                <div class="AccordionPanel">
                                    <div class="AccordionPanelTab middleTab">
                                        <div class="accordion_340_tab"> WHO IS AFFECTED? </div>
                                    </div>
                                    <div class="AccordionPanelContent">
                                        <div class="acontent"> <img class="imageright" src="images/accordion_photo.jpg" border="0" />
                                            <p>There are roughly 46,000 PT Community College instructors teaching in California, many of them free-way flyers.</p>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="AccordionBottom"></div>
                        </div>
                        <div style="clear:both;"></div>
                    </div>
                    <div style="clear:both;"></div>
                </div>
                <div class="footerArea">
                    <div class="copyright">&copy; 2011 California Academic Senate Part-time Faculty Caucus.  All rights reserved. Page design: Pamela Hanford</div>
                </div>       
            </div>
            <script type="text/javascript">
    <!--
    var SpryAccordion1 = new Spry.Widget.Accordion("SpryAccordion1", {useFixedPanelHeights:true, defaultPanel:2});
    //-->
            </script>
        </body>
    </html>

  • How to create Scrolling usable images in director?

    Hey Everyone,
    I've tried searching for this topic but couldn't find anything, but does anyone know how to create a function that allows small images to be on screen that allows users to scroll from one image to the next? So one main image is in the middle of the screen and smaller images off to the side, then if someone selects arrows either way the middle image will shift either side and the next image appears in the middle as the main image. Then users can click on that image to view a larger size of it?
    I hope that make sense, but is it possible in director? its a very popular function on a lot of photography type websites.
    Thanks for any help,
    Matt.

    You could create a variable with a value of '0', then every time you click the right arrow it would add +1 to the variable(-1 for the left arrow). Then reference the locH of the sprites according to the variables value.
    if gVariable = 1 then
    set the locH of sprite 1 = 320
    else
    set the locH of sprite 1 = 20000
    end if
    Then you would copy this script for each image you use and change the sprite number. You could even link up the sprite number with the value of the variable.
    if gVariable = 1 then
    set the locH of sprite gVariable  = 320
    else
    set the locH of sprite gVariable  = 20000
    end if
    Jeff

  • How to create a group address for emails?

    I don't know how to create a group address to be used in emails?

    http://www.dummies.com/how-to/content/how-to-organize-contacts-into-groups-in-mo untain-l.html
    http://www.macworld.com/article/1165582/how_to_email_groups_with_mail.html
    Hope this helps.

  • How to create links in a signature

    I've searched, and one topic came up.
    I'd like to create a clickable link in my signature. I tried the solution posted in that one topic, however it didn't work. I'd like to know if there's a setting that I'm missing, because I constantly find myself having to go into the edit screen and click <Link - Add> instead of simply typing and having them appear as I type. Anyone have a solution to either issue?
    The solution I've tried is adding a link in a normal email, then copy/paste into my signature. That didn't do anything.

    . Anyone have a solution to either issue?
    The solution I've tried is adding a link in a normal email, then copy/paste into my signature. That didn't do anything.
    that's the correct solution. It does work. if it didn't work for you you did something wrong. also, keep in mind that it won't appear as a link until you send the message. same for the other issue. if you simply type in a web address in email it will not look like a link while you are composing but will be converted into one when you send the message.

Maybe you are looking for

  • Problema para iniciar o tomcat instalado a partir do BO 3.1 XI

    Ola, Instalei o Business Object Edge 3.1 XI mas o tomcat não inicia Da uma mensagem assim: O windows nao pode iniciar o Apache tomcat 5.5.20 em computador local. Para obter mais informaes, examinie o log de eventos do sistema. Se este for um servio n

  • How can I get a list of the names of the failed steps ?

    Hi,    I wanted to have a string which can describe all the failed steps. For example, if I had the steps below : Step 1 Step 2 Step 3, etc and Step 1 and Step 3 failed, how can I get a string " Step1, Step2" ? Can I somehow add a variable in each st

  • Delivery document header text

    Hi Guys, Which table we can find the delivery document header text detatils?, Can any one please suggest. Text object should be VBBK. Thanks in advance.

  • Firefox cannot load websites but other browser can

    background - family community home pc...mozilla worked great for the longest time (along side IE)...all of a sudden mozilla can't connect to any website...IE always can (yuk) troublshooting steps (still can't connect to web w/firefox): 1. Removed Moz

  • I have incomplete album in my iTunes but payed for full.

    I got it a while ago but just recently got an iPhone and been downloading the music to it and every other song i got is avalible but my Toots album is just 5 of the 20 songs...