PHP Classes

Mail problem going in spam/junk

Recommend this page to a friend!

      SMTP E-mail sending class  >  All threads  >  Mail problem going in spam/junk  >  (Un) Subscribe thread alerts  
Subject:Mail problem going in spam/junk
Summary:Mails are going in spam/junk box
Messages:40
Author:joe
Date:2006-06-10 18:31:56
Update:2009-06-02 18:13:38
 
  1 - 10   11 - 20   21 - 30   31 - 40  

  21. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2006-07-17 20:47:42 - In reply to message 20 from arabgenius
The problem may be caused by many reasons, but it is hard to tell without seeing the script you are using.

  22. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of arabgenius arabgenius - 2006-07-19 20:23:20 - In reply to message 21 from Manuel Lemos
sorry to late

this is the code i used

<?php

require("email_message.php");

$from_address = "xxxx@yahoo.com";
$from_name = "arabgenius";

$reply_name=$from_name;
$reply_address=$from_address;
$reply_address=$from_address;
$error_delivery_name=$from_name;
$error_delivery_address=$from_address;
$to_name="arabgenius";
$to_address="arabgenius@hotmail.com";
$subject="XXXXXXXXXXX";
$message="Hello ".strtok($to_name," ").",\n\n xxxxxxxxx";
$email_message=new email_message_class;
$email_message->SetEncodedEmailHeader("To",$to_address,$to_name);
$email_message->SetEncodedEmailHeader("From",$from_address,$from_name);
$email_message->SetEncodedEmailHeader("Reply-To",$reply_address,$reply_name);

if(defined("PHP_OS")&& strcmp(substr(PHP_OS,0,3),"WIN"))
if(!@ini_get('safe_mode')){
$email_message->SetHeader("Return-Path",$error_delivery_address);
}
$email_message->SetEncodedEmailHeader("Errors-To",$error_delivery_address,$error_delivery_name);
$email_message->SetEncodedHeader("Subject",$subject);
$email_message->AddQuotedPrintableTextPart($email_message->WrapText($message));
$error=$email_message->Send();
if(strcmp($error,"")){
echo "Error: $error\n";
}else{echo "OK";}
?>

  23. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2006-07-19 21:16:14 - In reply to message 22 from arabgenius
I just used that exact same script and it delivered the messages immediately.

I suspect that you have that Hotmail account options set to take as junk all messages sent by addresses that are not in the contact list. In that case, go in the Options / Mail and junk e-mail / Junk e-mail filters and confirmation / Choose a junk e-mail filter, set it to Standard instead of Exclusive.

  24. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of arabgenius arabgenius - 2006-07-20 21:01:45 - In reply to message 23 from Manuel Lemos
no sir,

try to send 5-10 times to the same mail
and it will be blocked after that.
even with butting time between sending mails
the hotmail not allowing me to send to the inbox

  25. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2006-07-20 21:39:54 - In reply to message 24 from arabgenius
Maybe that is the problem. Hotmail may be recognizing that you are sending the same message multiple times to the same address. That is the definition of SPAM, more of the same.

  26. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Victor Jimenez Victor Jimenez - 2006-10-10 13:21:44 - In reply to message 25 from Manuel Lemos
Hehe, i follow all the thread and im very amazed on how people try to send spam emails to Hotmail...

Times goes down on sending spam over Open Relays, people try to send by himself using localhost servers, but as you told before Manuel, hotmail make a check on every message received and avoid this types of messages...

Then, check if it contains the same content inside, and if its sended to a list of emails, then blocks it again.

Some clever programmers/spamers have develop a system to send random data inside to deliver all his email database, so hotmail have develop a system based on filters to avoid this way, selling viagra over spaming are not the solution my friends...Emails are personal, and for personal use, we doesnt like spam in that way, we reject programmers developing software and scripts for this pourpose, so please, take care coding next time...emails are not jokes ;)

SlimeL0RD -Spanish C0d3r5-

  27. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of sharad c sharad c - 2008-08-23 20:35:03 - In reply to message 9 from Manuel Lemos
hello can u help me i wanna make a 100% yahoo clone web mail.

i ve started project but i need ur great support .


do u ve some tutorial/code for me. my email id is tu.ria@hotmail.com

  28. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2008-08-23 21:02:28 - In reply to message 27 from sharad c
To develop a Web mail you would need many more classes.

I recommend that you also look at this:

MIME message parser
phpclasses.org/mimeparser

MIME message composing and sending class
phpclasses.org/mimemessage

  29. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Fabian Fabian - 2008-08-23 22:15:40 - In reply to message 23 from Manuel Lemos
Manuel, tu nombre y apellido me dice que hablas espaņol, puede ser? la verdad es que lo necesitaria (que hablas espaņol) porque entre que los mails siguen entrando al Junk de Hotmail y para que entre al inbox el filtro de spam lo configure en LOW configuracion que me imagino no todos deben de tener, me estoy volviendo loco!, espero tener suerte y entiendas este mensaje! asi puedo consultarte sin miedo a que no entiendas mi pesimo ingles a men de que comprendo la mitad de todo lo que esta en este foro =)

gracias

Fabian

  30. Re: Mail problem going in spam/junk   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2008-08-23 22:52:02 - In reply to message 29 from Fabian
I understand Spanish but I am Portuguese, so my Spanish is not very good.

The problems with Hotmail are often due to sending HTML only messages. If that is your problem, you need to compose HTML messages with an alternative text part. For that I recommend that you use this MIME message sending and composing message instead of the SMTP class directly. Try the test_simple_html_mail_message example script.

phpclasses.org/mimemessage


 
  1 - 10   11 - 20   21 - 30   31 - 40