Mail problem with This might be a phishing message and is potentiallyunsafe...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sebastian

    Mail problem with This might be a phishing message and is potentiallyunsafe...

    Hi

    I have a little problem
    I sending email in Html using mail() function and everything is ok but
    when i open email in outlook i have following information:

    This might be a phishing message and is potentially
    unsafe......... ............... ............... .......


    Should be question - that i want to download pictures

    What can be a reason

    This is my email content:

    $content='<!DOC TYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//
    EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html; charset=us-ascii">
    <META content="MSHTML 6.00.2900.3314" name=GENERATOR> </HEAD>
    <body style="backgrou nd-color:#BFD5E5; font-family:Arial, Helvetica,
    sans-serif;">
    <img src="http://www.test.co/estateMailing/lay.png" usemap="#webPro "
    border="0">
    ';

    Thank you 4 any help
    Sebastian
  • =?ISO-8859-1?Q?=22=C1lvaro_G=2E_Vicario=22?=

    #2
    Re: Mail problem with This might be a phishing message and is potentiallyunsa fe...

    Sebastian escribió:
    I sending email in Html using mail() function and everything is ok but
    when i open email in outlook i have following information:
    >
    This might be a phishing message and is potentially
    unsafe......... ............... ............... .......
    >
    >
    Should be question - that i want to download pictures
    >
    What can be a reason
    >
    This is my email content:
    >
    $content='<!DOC TYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//
    EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html; charset=us-ascii">
    <META content="MSHTML 6.00.2900.3314" name=GENERATOR> </HEAD>
    <body style="backgrou nd-color:#BFD5E5; font-family:Arial, Helvetica,
    sans-serif;">
    <img src="http://www.test.co/estateMailing/lay.png" usemap="#webPro "
    border="0">
    ';
    Outlook can't see your PHP code so you should first check the actual
    message as it's received by the mail client. I suppose Outlook has an
    option somewhere to see the message's source code, including headers.

    In any case, you're quite right. When you link remote images you'll
    always get a warning in any decent mail client. The obvious way to make
    sure that's the reason is, well, removing the image and trying again ;-)

    You may be interested in attaching the image, it's very simple to do
    with this packege:



    Just make sure you aren't bombing your users mailboxes with unwanted
    large messages.




    --
    -- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
    -- Mi sitio sobre programación web: http://bits.demogracia.com
    -- Mi web de humor al baño María: http://www.demogracia.com
    --

    Comment

    • Rik Wasmus

      #3
      Re: Mail problem with This might be a phishing message and is potentially unsafe...

      On Fri, 25 Apr 2008 11:38:28 +0200, Sebastian <haja.sebastian @gmail.com>
      wrote:
      Hi
      >
      I have a little problem
      I sending email in Html using mail() function and everything is ok but
      when i open email in outlook i have following information:
      >
      This might be a phishing message and is potentially
      unsafe......... ............... ............... .......
      <img src="http://www.test.co/estateMailing/lay.png" usemap="#webPro "
      border="0">
      'usemap' is often abused for phishing purposes. What happens if you leave
      it out?
      --
      Rik Wasmus

      Comment

      Working...