Results 1 to 4 of 4

Thread: emails sent to bulk folder....(Is this a php problem?)

  1. #1

    Thread Starter
    Frenzied Member System_Error's Avatar
    Join Date
    Apr 2004
    Posts
    1,111

    emails sent to bulk folder....(Is this a php problem?)

    I've got the following code:

    Code:
    @mail($address, $title, $message , "From: ". $from . "\nContent-Type: text/plain; charset=utf-8");
    Which sends a verification email to a registered user. The only problem is the email is considered bulk, and ends up in the bulk folder, or doesn't show up at all. I'm thinking this is a php problem, because I've tried using many different email addresses to send from.

    Does anyone have any idea what's going on?

  2. #2
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: emails sent to bulk folder....(Is this a php problem?)

    Most ISP's do a reverse lookup on the IP address from which the email originates and, if it fails iut is considered spam.

    Also, if you do have a host name associted with the server and the reverse lookup yeilds a different domain, it will also fail.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  3. #3
    Lively Member deranged's Avatar
    Join Date
    Jun 2004
    Location
    TN
    Posts
    104

    Re: emails sent to bulk folder....(Is this a php problem?)

    Not only that, but AOL will likely block--not move to bulk folder, but completely block--almost any email without 3 proofs of residence, a blood test and a small part of your left arm in order to prove it's really you sending the email, and not a bot (cuz god forbid a computer do anything these days). All of this can be sent to [email protected] but will probably be marked as spam and blocked completely =\
    Last edited by deranged; Nov 15th, 2005 at 07:34 AM.

  4. #4
    Junior Member
    Join Date
    Oct 2005
    Posts
    17

    Re: emails sent to bulk folder....(Is this a php problem?)

    Also, if the smtp server your php is relying on has alot of emails going out at any given time, this could also cause a problem.
    Make a new file called "phpinfo.php" and put this code in it:
    Code:
    <? phpinfo(); ?>
    Browse to the page and Ctrl + F for SMTP, that will tell you the SMTP server you are using. You might need to get a sendmail script to use a different one, unless you are using your own server where you can change this yourself.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width