This is a discussion on Mail problem with This might be a phishing message and is potentiallyunsafe... within the PHP Language forums, part of the PHP Programming Forums category; Hi I have a little problem I sending email in Html using mail() function and everything is ok but when ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
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='<!DOCTYPE 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="background-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 |
|
|||
|
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='<!DOCTYPE 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="background-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: http://phpmailer.sourceforge.net/ 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 -- |
|
|||
|
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 |