Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Email Signup Issue

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #39722
    drizzy
    Participant

    I made a basic email signup form and I’m not sure what happen here, but it was working fine for a long time, but all of a sudden I’m getting the follow errors.

    • Warning: mail() [function.mail]: SMTP server response: 550 Requested action not taken: mailbox unavailable or not local in C:inetpubvhostscitysightseeingtoronto.comhttpdocsnewsletter.php on line 19
    • Warning: Cannot modify header information – headers already sent by (output started at C:inetpubvhostscitysightseeingtoronto.comhttpdocsnewsletter.php:19) in C:inetpubvhostscitysightseeingtoronto.comhttpdocsnewsletter.php on line 21
    
    $errors = '';
    $myemail = '[email protected]';//<
    Put Your email address here.
    $email_address = $_POST;
    if (!preg_match(
    "/^[_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,3})$/i",
    $email_address))
    {
    $errors .= "n Error: Invalid email address";
    }
    if( empty($errors))
    {
    $to = $myemail;
    $email_subject = "Newsletter Signup submission";
    $email_body = "You have received a new message. ".
    " Here are the details:n Email: $email_address";
    $headers = "From: $myemailn";
    $headers .= "Reply-To: $email_address";
    mail($to,$email_subject,$email_body,$headers);
    //redirect to the 'thank you' page
    header('Location: newsletterthanks.php');
    }
    ?>




    Contact form handler



    echo nl2br($errors);
    ?>

    Can anyone tell me what I’ve done wrong TIA!

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.