Hullo, I have been browsing through the internet on how best I can send an email from my website; and it seems like most were directing me to PHPMailer.
I added the php mailer folder onto my server, and now am attempting to test whether am email can really be sent. However, I keep getting this error message;

Message was not sent.Mailer error: The following From address failed: sample_mail@gmail.com : Called Mail() without being connected;

Here i sthe code I am using to send the email;

<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();  // telling the class to use SMTP
$mail->Host     = "smtp.gmail.com"; // SMTP server
$mail->From     = "samle1@gmail.com";
$mail->AddAddress("sample2@rocketmail.com");
$mail->Subject  = "First PHPMailer Message";
$mail->Body     = "Hi! \n\n This is my first e-mail sent through PHPMailer.";
$mail->WordWrap = 50;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
?>

Can someone help me out on how to solve that error?

Recommended Answers

All 4 Replies

gmail does not use the standard smtp ports and from needs to be your existing email address. Then you need to use authentication and provide your password. There are several examples already in this forum.

@Pristaeas, So; what do I replace?? and with what??

I'm sorry, but it is the first time I am attempting to send an email from my website.

Thanx @Pritaeas, I followed the link you gave,and it gave me an idea, although did not solve my dilema.
However, I was able to get it to work. Here is the code I used [In case someone else faces the same challenge I faced];

require("PHPMailer_5.2.4/class.phpmailer.php");
    $email = $_POST['email'];
    $mail = new PHPMailer();
    $mail->IsSMTP();
    $mail->Host = "localhost";
    $mail->From = "sender@domain.com";
    $mail->FromName  =  "My name";
    $mail->AddAddress("recipient_1@domain.com");
    $mail->AddAddress("recipient_2@domain.com");
    $mail->SMTPAuth = "true";
    $mail->Username = "mygmailemail@gmail.com";
    $mail->Password =  "mygmailpassword";
    $mail->Port  =  "25";

    $mail->Subject = "Test email";
    $mail->Body = "" This is a test email.;
    $mail->WordWrap = 50;

    if(!$mail->Send())
    {
        echo 'Message was not sent.';
        echo 'Mailer error: ' . $mail->ErrorInfo;
    }
    else
    {
        echo 'Email has been sent!!';
    }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.