PHP mail marked is phishing

PHP mail marked is phishing

am 12.01.2008 19:35:57 von jack

Hi guys,
I am writing a simple script that sends an email to a user using
mail(). The problem is when the mail is received it is marked as
phishing. I am wondering if there is a way to fix this issue.

Thanks

Re: PHP mail marked is phishing

am 12.01.2008 20:26:39 von Paul Lautman

Jack wrote:
> Hi guys,
> I am writing a simple script that sends an email to a user using
> mail(). The problem is when the mail is received it is marked as
> phishing. I am wondering if there is a way to fix this issue.
>
> Thanks

It depends on what is doing the marking and on what it is basing its
judgment. The fact that you are using mail() is not directly relevant, since
thousands of emails are sent by using mail() every day and these are not all
marked as phishing.

Re: PHP mail marked is phishing

am 12.01.2008 22:13:16 von Manuel Lemos

Hello,

on 01/12/2008 04:35 PM Jack said the following:
> Hi guys,
> I am writing a simple script that sends an email to a user using
> mail(). The problem is when the mail is received it is marked as
> phishing. I am wondering if there is a way to fix this issue.

It could be a problem due to malformed messages. You may generating
messages that do not respect the e-mail standards and whatever considers
it phishing takes it as an attempt to explore an eventual bug in a mail
client program.

I use this MIME message composing and sending class. It generates
message strictly conforming to the e-mail standards. Try using this
class to send your message and check if the message is still considered
phishing:

http://www.phpclasses.org/mimemessage


--

Regards,
Manuel Lemos

PHP professionals looking for PHP jobs
http://www.phpclasses.org/professionals/

PHP Classes - Free ready to use OOP components written in PHP
http://www.phpclasses.org/

Re: PHP mail marked is phishing

am 14.01.2008 02:38:35 von Aaron Saray

On Jan 12, 12:35 pm, Jack wrote:
> Hi guys,
> I am writing a simple script that sends an email to a user using
> mail(). The problem is when the mail is received it is marked as
> phishing. I am wondering if there is a way to fix this issue.
>
> Thanks

Could it be that you're sending from a different domain than the
'from' address of your e-mail? or that maybe your host doesn't have a
reverse DNS entry?

Two things to check into...

Re: PHP mail marked is phishing

am 14.01.2008 03:06:22 von Peter Pei

yr isp