Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.


    • CommentAuthormadison
    • CommentTimeNov 2nd 2006
     
    Helllo
    I test this simple email script on webserver but still they not sending the mail.pls checked my code
    /*<?php
    $to = "madison.joke@...";
    $subject = "Test mail";
    $message = "Hello! This is a simple text email message.";
    $from = "madison@...";
    $headers = "From: $from";
    mail($to,$subject,$message,$headers);
    echo "Mail Sent.";
    ?>*/

    and please tell me what is the problem.

    Madison
    • CommentAuthorjohalber
    • CommentTimeNov 2nd 2006
     
    hi,

    Use the following code, please...

    <?php
    $to = "madison.joke@...";
    $subject = "Test mail";
    $message = "Hello! This is a simple text email message.";
    $from = "madison@....";
    $headers = "From: Madi<".$from.">";
    mail($to,$subject,$message,$headers);
    echo "Mail Sent.";
    ?>
  1.  
    Are you using windows hosting or linux?

    One more thing ot be noted is if you are not getting your email in Inbox check it in your spam folder or bulk folder.

    Thanks