Page 1 of 1
Send form mails - AOL users
Posted: Thu Dec 04, 2003 12:01 pm
by tsg
I am having an issue with sending emails to people that are using AOL email addresses from form mails. For instance, I have a few websites where people can sign up for an account or a mailing list, but they have to confirmation / activate their email address by accessing a link in an email sent to them. The email is automatiocally send from the website.
It seems that the emails are not making it to AOL users, and in turn, they can not activate their account and sending me emails all the time saying "I can't log in".
Now, I know this isn't really a PHP only question, so this may not be the best place to post this message, so sorry if it is.
Also, I have talk to the admins to my hosting / servers and it is not an issue of being blocked in that way ... atleast I think.
So, anyone else with this issue and know of any solutions? It is really becoming a pain in the [insert cute word for butt here].
Posted: Thu Dec 04, 2003 12:16 pm
by xisle
Sometimes entire IP blocks are rejected for spam reasons.
Is it possible another client of your host on the same IP block is a spammer? If you are hosting at a low-cost server farm, you may want to find another...
Posted: Thu Dec 04, 2003 12:19 pm
by tsg
I really don't believe that is the issue here. plus this is happening on several on my websites which have different physical servers and IP addresses.
That was my thought at first and had tech support look in to it.
Thanks,
Tim
Posted: Thu Dec 04, 2003 12:21 pm
by microthick
It might be due to stringent spam blocking that AOL does. You might have to be added to their "white list" of acceptable mail domains. I've heard they block everything that is NOT on their white list.
I'd email their technical support people.
Also, what headers are you sending in your e-mails. Are you including priority, etc?
Posted: Thu Dec 04, 2003 12:24 pm
by m3mn0n
I have the same issue. Multiple sites, multiple servers, multiple IPs, same problem; AOL users can't be emailed.
I'm definately going to contact them to be on this "white list."
Posted: Thu Dec 04, 2003 12:28 pm
by microthick
At least it happens to even the big sites:
http://news.com.com/2100-1023-270433.html?legacy=cnet
(old article)
Posted: Thu Dec 04, 2003 12:28 pm
by tsg
I guess the think to do is when someone enters an aol.com address is to stop the form and but in big bold letters "AOL SUCKS!"
Seriously, stop the form process and tell them to add the email address that the email will come from to their white list, then have them continue the form process.
Damn spammers make it a pain in the butt for us legit people.
Tim
Posted: Thu Dec 04, 2003 12:31 pm
by tsg
Good article, but the date is July 23, 2001 ... guess it hasn't been fixed yet .. haha
Some things never change

Posted: Thu Dec 04, 2003 12:43 pm
by xisle
Sorry for the off topic post, BUT speaking of AOL, I use this JS to foil the pop up blocker..
I use a pop window to loop through 6 or 7 domains to set a consistent user_id...
If window doesn't pop, then load the cookie script in the parent window.
Code: Select all
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg){
return 1;
}
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0)
break;
}
return null;
}
var win;
if (!(GetCookie('cookiename'))){
var win=window.open('popcookie.php','win','toolbar=0, menubar=0, scrollbar=0, statusbar=0, locationbar=0, personalbar=0, resizable=0, width=1, height=1');
window.self.focus();
if(!win){
window.self.location='setcookie.php?initialpage=' + window.location;
}
}
Share the AOL foilers
