Images not displaying in any browser

Hello community.
Recently I bought a Macbook Pro 15 inch 2.3Ghz intel core i7.
Since I bought this machine I cant see some images in any browser (safari, chrome, firefox) in some websites. I have tried in different machines and the images in these websites are there but in my computer the images links appera as broken and it becomes anoying. I have cleared the cache memory, erased history, cookies and nothing seem to work.
Is it a probelm with my machine?
This is my business website and I cant see the logo on the top left or the cart image in the top right.
PLease anyone can tell me what is going on?
You can see the webiste by yourself
www.pinatize.me
This is what I see using chrome safari or firefox
Any help will be much appreciated
Thanks

DRK Montreal,
try opening Terminal, and running the following command in the Terminal window:
nslookup www.pinatize.me
If you still have access to some of those other Mac computers, try running the same command on them also for comparison.
Please include in your reply the full output from that command.

Similar Messages

  • IWeb '08 Photo Albums not Displaying on any Browser Platform

    Hello,
    I have just published some albums to a page on my website:
    http://www.hattrickphotography.com/HPC/weddingportfolio/weddingportfolio.html
    ... but they do not show up on any browser platform. For example, in IE7, it says that the page has loaded but in the status bar it says "Error on page."
    If I drill into the error and view the details it says:
    Line: 765
    Char: 1
    Error: Access is denied
    Code: 0
    URL: http://www.hattrickphotography.com/HPC/weddingportfolio/streamloader.html?scriptURL=Pages/Lindsay_and_Ben_files/Lindsay_andBen.js&id=gridEntry0
    I did not set security on my website and have never been prompted with any authentication dialog. I am using iWeb '08 and publishing to MobileMe.
    If there is anyone who could assist with the issue it would be much appreciated. Thanks!
    Regards,
    Jason Hattrick
    HattrickPhotography.com

    Welcome to the Apple Discussions. Are you publishing to MobileMe or a different hosting server? In either case does the slideshow display properly if you publish to a folder and open it from there?
    OT

  • Images not displayed properly.Any advice on that?

    Hi,
    I found the following code inside the forum and i'm trying to understand it.
    It appears to be a problem though. In particular the images(chess-pieces) are not displayed properly. The background of the gif images should be transparent but is not. Any advice?
    Thanks
    Here is the code:
    import java.awt.*;
    import javax.swing.*;
    public class ChessBoard10 {
    static final int PAWN = 0;
    JFrame frame;
    JComponent[][] checker;
    public ChessBoard10() {
    frame = new JFrame("CHESS GAME");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container con = frame.getContentPane();
    con.setLayout(new GridLayout(8, 8));
    checker = new JComponent[8][8];
    for (int row = 0; row < 8; ++row) {
    for (int col = 0; col < 8; ++col) {
    JComponent p = new JPanel();
    p.setBackground(setColor(row, col));
    checker[row][col] = p;
    con.add(p);
    frame.setSize(500, 550);
    frame.setVisible(true);
    Color setColor(int y, int x) {
    Color c;
    if (y % 2 == 1) {
    if (x % 2 == 1) {
    c = Color.white;
    } else {
    c = Color.black;
    } else {
    if (x % 2 == 1) {
    c = Color.black;
    } else {
    c = Color.white;
    return c;
    public void setPiece(Piece pc, int row, int col) {
    JComponent p = checker[row - 1][col - 1];
    //one base -> zero base conversion
    if (p.getComponentCount() > 0) {
    p.remove(0);
    p.add(pc);
    p.revalidate();
    /*test*/
    public static void main(String[] args) {
    int Bpawn = 0,
    Bbishop = 1,
    Bking = 2,
    Bknight = 3,
    Bqueen = 4,
    Brock = 5,
    Wpawn = 6,
    Wbishop = 7,
    Wking = 8,
    Wknight = 9,
    Wqueen = 10,
    Wrock = 11;
    ChessBoard10 cb = new ChessBoard10();
    for (int i = 1; i < 9; i++) {
    cb.setPiece(new Piece(Bpawn), 2, i);
    cb.setPiece(new Piece(Wpawn), 7, i);
    cb.setPiece(new Piece(Bking), 1, 4);
    cb.setPiece(new Piece(Bqueen), 1, 5);
    cb.setPiece(new Piece(Bbishop), 1, 3);
    cb.setPiece(new Piece(Bbishop), 1, 6);
    cb.setPiece(new Piece(Bknight), 1, 2);
    cb.setPiece(new Piece(Bknight), 1, 7);
    cb.setPiece(new Piece(Brock), 1, 1);
    cb.setPiece(new Piece(Brock), 1, 8);
    cb.setPiece(new Piece(Wking), 8, 4);
    cb.setPiece(new Piece(Wqueen), 8, 5);
    cb.setPiece(new Piece(Wbishop), 8, 3);
    cb.setPiece(new Piece(Wbishop), 8, 6);
    cb.setPiece(new Piece(Wknight), 8, 2);
    cb.setPiece(new Piece(Wknight), 8, 7);
    cb.setPiece(new Piece(Wrock), 8, 1);
    cb.setPiece(new Piece(Wrock), 8, 8);
    class Piece extends JPanel {
    String[] imgfile =
    "Bpawn.gif",
    "Bbishop.gif",
    "Bking.gif",
    "Bknight.gif",
    "Bqueen.gif",
    "Brock.gif",
    "Wpawn.gif",
    "Wbishop.gif",
    "Wking.gif",
    "Wknight.gif",
    "Wqueen.gif",
    "Wrock.gif" };
    public Piece(int type) {
    add(new JLabel(new ImageIcon(imgfile[type])));
    }

    Well, without actually testing the code which I most unfortunately can't do since my real computer is chrashed at the moment, try checking the
    boolean Component.isOpaque();otherwise try using .png's instead altough it shouldn't matter.
    This is just some general advices =(

  • XML Dataset not displaying on any browser

    I searched the last six or so pages for a simular issue and came up empty handed so please forgive me if I'm bringing up an old or repeated problem. I assume the issue I'm facing is the result of some small (or large) mistep on my end but have yet to figure it out.
    When I created the xml data set from my local server i pulled the data from my database online using the php code for xml provided at adobe labs. You can see the example here: http://kannabooh.ty7.net/includes/xml_create.php. Everything was great and the data loaded in the preview. I created a Master Details Layout using the wizard but when I tested the page or uploaded to the site no data would appear. I've tried multiple browsers, versions and also reloading the data in multiple layout types with no luck.
    Any help would be greatly appreciated you can see the example here: http://kannabooh.ty7.net/schedule.php.

    So just so I understand you do see the template tags. Do you also see the data that is brought in from the file http://kannabooh.ty7.net/includes/xml_create.php because I see the tags but then when the page is completly loaded they disapear and are not replaced with the data I want loaded. Thats my main concern and I worry that its something I'm doing wrong because none of the browsers I'm using show that data. I see the field names that should be populated, their just not being populated. I hope that clears up my concerns.
    Currently Im testing on both Windows XP and 7 on my test server I'm using PHP5. Hope that helps.
     Tyger Burch
    Founder,
    Ty7 Web Services, LLC. (www.ty7.net)
    Digital Grime Hip Hop Social Network (www.digitalgrime.com)

  • SOME images not downloading on ANY iPod Touch browser

    SOME images from SOME websites are not downloading on ANY browser my iPod has on ANY wireless network.
    I have an 8gb iPod Touch 2nd gen, and iTunes 9.1.
    I went to vector.tutsplus.com to read some articles like I usually do and most of the images were loading except the images that are actually in the article inline. I figured it was just a safari glitch so I opened up my Opera browser for iPhone. I still couldn't see the images, so I figured it was just my Internet connection. I hopped onto another Wifi connection in my neighborhood and went to the website but the images would STILL not load. They load fine on my computer. Other resides are doing the same thing. It's really hard to read tutorials and articles on graphics design when I can't see images.

    I tried pinging some hosts of the images that won't load on my PC here at the office and I can ping the servers with no problem.
    When I ping the same servers on my Mac through Terminal, I get "ping: sendto: No route to host"

  • CF slows down to a halt ... images not displaying

    My primary laptop on which I do all coding ...
    - less than 1 year old
    - Dell (cough) XPS M1730
    - Windows XP (latest)
    - ColdFusion Ver 8, developer edition.
    - No other issues with laptop
    Also running
    - SQL 2000
    - Synergy
    - Anti virus etc. changed Norton daily scan and unaware that I have picked up any viruses - I was my hands very well and often
    Over 6 months gradually CF has been slowly not display internal referenced <img src> tags.  External work fine.
    To the point now where most in our app do not display.
    Then in the past 3-4 days a lot of pages when called give Firefox or IE errors:
    Page will not display with too may users error.
    But there aren't any others.
    I go to all other web site, no issues with speed.
    I just cold warm booted the machine and now while page 1 appears, page 2, login, takes minutes to appear.  But on a beta server (also developer edition) it's instant.
    When I go straight into the browser, it works fine, albeit no images, crashes with a known bug (missing application variable), fix it, then resume, then just sits there forever.
    And there's no difference between the two machines ... well, not in "that" way.
    Adding to my confusion is ... I cannot get into the CF Admin panel.
    I can see it approve me, then it just spins.
    Nothing has changed on machine in past weeks EXCEPT traveling when I sign in to the usual plethora of wifi and other networks but never had a problem - except luggability
    I am thinking of, UGH, reinstalling Windows ... but why bother if it's working perfectly and only ColdFusion has an issue.
    Now COLD booted machine for 5 minutes.
    Everything seems better except CF still a BIT sluggish and still not "drawing" most images.  Able to access Admin panel.  Even if there images not displaying.
    Anyone any ideas?

    Thanks for your prompt reply ...
    We scoured for a folder like that and found none.
    What we DID find is that over the years of coding, we have a template count of 3,500 files in 130 folders, but the root where we start is about 1,500 files.   144 megs total size though.
    That shouldn't be too much?  Esp as our beta and production servers are using the same amount with no issues.
    Admittedly production is CF 7.X.
    Much more powerful machines but still.
    It would have made sense as that is the only thing on the machine that has "grown" ... but no luck.
    Does remind me of the day when our mail server got hacked and we had 100,000 outbound in the spool.  That was fun.: :)

  • OBIEE 10G Embedded Image not displayed on PDF

    Hi
    We have some embedded images (source on network share or on the webserver) on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    Is there a known bug that images can't be printed on dashboard pages or do we have to embed them different?
    Thank you

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • OBIEE 11G Embedded Image not displayed on PDF

    Hi
    I have some embedded images on a dashboard. On the screen the images are displayed without problems.
    But if we want to print the dashboard (f.e. PDF) the images are not printed. In html-view the images would be displayed.
    All the images are referenced with the fmap path.
    Any way to print the images in the pdf ?
    Thank you
    obiee 11.1.1.5
    O.S : Oracle Linux 5.6 x64

    Hi Team,
    I do face the same issue of image not displayed in only pdf output format. Our client has deployed OBIEE 10.1.3.4.1 using Weblogic application server and is accesible through a secured url access.
    I have followed the fmap syntax to locate the image, also made sure the image is getting accessed through url, tried with different images of different sizes . In all cases the image display is appearing fine in HTML & Excel output. But not getting displayed only for pdf output.
    Can you please help me with this regard if am missing any specific setup for pdf output. Is there is any pointers or documentation available to get around this issue.
    Thanks in advance.

  • JPG images not displayed correctly in Bridge and Photoshop (Mac OS)

    (Note: I have copied the content of this query from the Creative Suites forum where I originally opened it.)
    I am using CS4 under OSX 10.4.11 on a PowerMac G5 Quad with 23" Apple cinema display. Images which have been captured as JPG are displayed fine by Preview, but when opened in Bridge, Camera Raw or Photoshop. the colours are all "washed out". The attached screen capture should give an idea of the difference, with the upper being Camera Raw (image settings) and the lower being Preview. My monitor has been calibrated and I'm using sRGB IEC61966-2.1 colour space in Camera Raw and Photoshop. The colours displayed by Preview are pretty close to "real life". I find it virtually impossible to adjust the colours in Photoshop to get back to anything similar.
    After opening the image in Photoshop without adjustment, and Save As JPEG with embedded color profile, Preview displays the new image the same as Photoshop. Save As JPEG without embedded color profile, and Preview displays this copy just like the original. It seems that Photoshop is making different (incorrect) assumptions about what color space to use when there is no embedded color profile. Shouldn't it assume sRGB like virtually everything else (http://en.wikipedia.org/wiki/SRGB)? Or is its interpretation of sRGB incorrect? How can I fix this?
    Re: JPG images not displayed correctly in Bridge and Photoshop 

    xxxxyyyyz wrote:
    …If there is someone out there who has experience of obtaining decent colour management in CS4 on a Power PC, I would really like to know how you achieved it.
    That would be yours truly, and I hasten to reply because I may have some insights that can help you too.
    Just get it it out of the way, here's my setup:
    Photoshop 11.0.2 ("CS4"); VersionCue disabled and uninstalled.—2.5 GHz Power Mac (PPC) G5-Quad; 16GB RAM; mutant, flashed 550MHz nVidia GeForce 7800GTX 1,700MHz 512MB VRAM; ATTO ExpressPCI UL5D LP SCSI card; Mac OS X Tiger 10.4.11 and Leopard 10.5.8 boot drives; Spotblight, Dashboard and Time Machine permanently disabled; dual 22" CRT monitors; USB wireless 'n' available but connected to the Internet via wired Ethernet; 1 FW flatbed scanner; 2 SCSI scanners (one tabloid-size transparency scanner and a film scanner); various internal & external HDs; FW Epson 2200 and Ethernet Samsung ML-2850ND printers; 2 X Back-UPS RS 1500 XS units.
    I can unambiguously and in good faith represent to you that my color management, from capture to print, is as spot-on as anyone with any kind of setup can hope to achieve.  Unequivocally and without qualifications.
    Now, first things first:  Forget about trying to synchronize color management across the point applications lumped together only by Adobe marketing fiat into a variety of meaningless "creative suites".  Concentrate on Photoshop.  Do not try to use Bridge to synchronize anything.
    The "suites" are a totally artificial construct created by Adobe bean counters and marketing types.  The point applications (i.e. the individual programs clumsily bundled together, e.g. Photoshop, Illustrator, InDesign, etc.) are developed independently by separate engineering teams that are not only not in the same building, but in different cities, different states of the American Union, and even in different countries.  They have very little communication among them, if any, as evidenced by repeated posts in these forums by Photoshop engineering staff urging us, the end users, to let the other teams know in their own forums that a given problem exists and is actually affecting our work.
    Enough said about the cause of the problem.  The end result is that Color Management is at very, very different levels of progress and sophistication in each individual point application, with only Photoshop fully entitled to be considered state of the art.
    Secondly, a disclaimer:  I have been hanging on to my CRT monitors and take care of them as Jascha Heifetz used to take care of his Stradivarius.  I don't know what I will do if I manage to outlive the usefulness and accuracy of my CRTs (unlikely at this point).  I have despaired in futile efforts to bring the luminosity of any LCD monitor down to where I would feel comfortable calibrating and profiling it.  I believe my monitors are the foundation of my color management efforts.
    Especially if you have one of the extreme wide-gamut LCD or LED monitors, you'll face an uphill battle. 
    Be careful to avoid any version 4 icc profiles, whether canned or generated by your calibration software.  Stick to version2 icc profiles.  Ask the manufacturer of your calibration software/hardware if in doubt.
    Here are some not-too-recent, but thoroughly representative screen shots of the calibration results I obtain with my monitors, which I calibrate and profile often and regularly (I validate the calibration at least several times per month).
    In a nutshell, my color management practices and settings mirror those described by Bruce Fraser, Jeff Schewe, Andrew Rodney and Gary Ballard's site.  I have learned from all of them.
    My working color space is ProPhoto RGB.  I choose to work with PSD and PSB files.  As a long-time, rabid JPEG hater, I only rarely deal with JPEGs, using them sporadically to illustrate a point in this forum or elsewhere in the web.  My main output consists of prints.
    I only deal with tagged image files (files with an embedded color profile) and often recommend beating up with a baseball bat any moron that hands you an untagged file—figuratively of course, but I find the expression gets my point across unambiguously.
    Following is a screen shot of some of my pertinent settings:
    Note that I have never bought into the "suite" concept myself.  I do have and routinely use Adobe Illustrator 10.x, InDesign 2.x and Acrobat Professional 8.x, but they are all older, independent versions of each point application, licensed at different times.
    Be further advised, that the answer to many problems offered by Adobe engineers often is not to install VersionCue, or uninstall it, or at least disable it.
    Also, as outlined at the beginning of this post, concentrate on Photoshop, not on synchronizing applications that can't really communicate with each other, despite the claims of Adobe marketing hacks to the contrary.
    One big caveat, do not fall into this trap:
    xxxxyyyyz wrote:
    …I believe my problem has nothing to do with my monitor profile, for several reasons, but…
    …It seems extremely unlikely to me that…
    You either want to learn, or you don't.  You either want to solve your problems, or you don't.
    When you start arguing instead of studying, questioning advice instead of following it and detecting where you went wrong, you're on the right track to nowhere.  That attitude will get you there fast.  Remember you are the one with the problem, and only you can acquire the discipline to learn how to solve it.
    Go ahead and ask me anything that is not clear, just don't argue with me please, and don't tell me why you think Fraser, Rodney, Ballard and I are wrong.  You see, I am not experiencing any problem that needs fixing.  I have an interest in helping you, but not in hearing about your speculations, theories or conclusions.
    Good luck.
    Wo Tai Lao Le
    我太老了

  • Image not displaying in the Task Sequence Wizard. SCCM2012

    This is my question, so I will post the link here.
    http://community.spiceworks.com/topic/925727-image-not-displaying-in-the-task-sequence-wizard-sccm2012
    Bryan
    I captured an image from a PC that I am preparing to be deployed with Office 365. Once I captured
    the image, I went to the software library to add the operating system image. That seemed to go on without any issue, but when I look at the summary, I see the big yellow globe saying "in progress" it has not changed since yesterday afternoon.
    I then created the task sequence for this image
    to be deployed under Software Library, Task Sequences. When I selected the references tab, everything seemed to be in order with the exception of the "operating system image" under type. It was/is showing 0.0% Compliance.

    So, the problem described in the other forum post does not match the title of this thread. Are you trying to address two different things? These are unrelated btw.
    For the issue in the other thread, you'll have to troubleshoot your content distribution to the selected DP. The distmgr.log and pkgxfermgr.log (assuming you chose to distribute the image to a DP directly attached to your primary site) are the places to
    start and will show you exactly what's going on.
    As for the title of this thread, we'll need a lot more info to help you there.
    Finally, I would suggest you copy your questions from other sources into the thread -- this will help other folks in the future that may stumble upon this thread and will prevent any confusion.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Adobe Flash Player not working on any browser in computer

    I really need help flash player not working in any browser in google chrome. For example in http://www.twitch.tv/ You need Adobe Flash Player to watch this video.  Download it from Adobe. I already did everything to fix it shown in support page please help!!!!

    Same problem on the same website here, pls help
    -Hi, i think I've manage to solve the problem by following the instruction on the following page
    http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html
    remember to restart your browser after doing the steps

  • One website will not load on any browser, will work on mobile phone

    One website will not load on any browser (Firefox, IE, Chrome). Have turned off all security programs and firewalls, have tried in Safe Mode, will not load. It works on my smartphone. Can load the basic site, but not the sign-in page. Says Connected at the bottom of the page, but says Connecting at the top, and the little circle goes around counter clockwise; ran for one hour, still didn't load. It used to load, don't know if I did something or downloaded some program to make it stop.

    You can try to access the website in a New Private Window.

  • Flash not working with any browser after update

    After an update, flash videos will not stream in any browser (Chrome, Firefox, Safari). I did a clean install of flash and the browsers, but to no avail. Mac 10.10.2. Has anyone else experienced this?

    Sadly doing that did not fix my problem either.     I just tried doing that and uninstalling flash player, rebooting and then reinstalling flash and I am still having the same problem as I stated here.   http://forums.adobe.com/message/4014843#4014843
    I have checked that flash is enabled
    Unchecked hardware accerleration
    Set in the internet options to use software rendering
    Tried updating my drivers (it tells me my drivers are up to date, in any case I have only had this laptop since July)
    I even tried deleting cookies, though I use IE9 instead of firefox so I just deleted them all instead of just the one for youtube, I honestly can not find the folder for cookies anyway with this windows 7 and how it is set up to try and delete the one cookie.
    I am really at a loss as to what to do.

  • Quicktime plugin will not run in any browser including Safari!  Help!

    Quicktime plugin will NOT run in any browser.  I've been reading a lot about this issue and it seems to be a widespread problem.  I didn't have this issue a few weeks ago.  perhaps it has something to do with OS 10.6.7?  Help, desperate for a solution.

    Post a URL?  Not sure what you mean as it does not seem to be website specific.  I can't view apple movie trailers on apple.com in Safari or Firefox.  The plugins just are not there.  I've download QT and it shows up in my Utilities folder but no where to be found within firefox plugins/add-ons - same goes for Safari but the plug-ins I do have ARE enabled.  Each time I try, I get the install missing plugin prompt, which I do, and as stated before - nothing happens.  I've read a lot about moving things in/out of internet plug-in folders in various places, preferences folders, etc. but no luck so far.
    Thank you.

  • Background image Opacity reduce using tracingsrc not working in any browser

    I want reduce  Background image Opacity
    I found very good optional on DW Cs4 under page properties Tracing Image
    when I use this body tracingsrc = I can see on DW Perview Window but when i open same thing in any browser Its just white .
    Plzz help me I am beginner in DW .
    I have copy paste the html code .
    if you know any other method for reducing background image opacity plz let me know thanks you
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
            "http://www.w3.org/TR/html4/loose.dtd">
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>
       Font Tag
    </TITLE>
    </HEAD><body tracingsrc="photo/background/7-cosmos-photo-cosmos-flowers-wallpaper_1440x900.jpg" tracingopacity="40" tracingx="0" tracingy="0">
    SOme Text here
    </BODY>
    </HTML>

    I really had to look this one up before answering because I had never heard of that code and it is proprietary to Dreamweaver.  The "tracing*" options are only for DW's design view to help you out when you code moving from graphics applications such as Photoshop, Fireworks, etc to DW.  The code is not valid HTML so no browser will display this for you.  You can find out more here:
    http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7da9a.h tml

Maybe you are looking for

  • Purchase Order Quantity

    Hi ABAP Gurus, Requirment: I need to adjust only the delivery quantity of the PO or STO. Options to update: BAPI Func.Mod, BDC, or any Func. mod particularly for this req.  Plz suggest which I need to use for update the Orders to improve the performa

  • Can I restore an iPhone backup from a Mac in a Windows PC?

    I have copied the files from Library/Application Support/MobileSync/Backup from my Mac to a USB stick and I have to use these backup files on a Windows PC. Will these files from an iTunes for Mac work on an iTunes for Windows? Thanks, Rafael

  • FTP program not showing Airport Disk folders or files

    I have just recently changed my wireless router to an Airport Extreme (gigabit) from a Netgear WNR854T (that was having up-time issues). I have an old PC that I use for an FTP server control with the Serv-U package. When I had the WNR854T running I j

  • How to make OSX boot disk using a USB thumb drive? The final answer?

    Well guys I am getting really conflicting information about possibility to use USB thumb drive for boot up drive for OSX! Some people say yes, some say no, some - not sure. Here is the question formulated as straight as possible: A Mac user wants to

  • Submit Form - Change Body of Email & Subject Line

    I have my submitt button working correctly on my form and going to the correct email addresses when the button is clicked.  However, the subject line and the body of the email are not stating what I want them to.  Is there a way to put what you want