// this php sends email via a custom smtp server to a specified email address. email address is get after concatenation of two separate string variable. // Problem here : eg for johnny@mail.com, johnny is $username variable and @mail.com is $mailprovider variable. if i echo the $address variable , i get the johnny@mail.com, but the server doesnt send the mail.
<?php
require_once "Mail.php";
$host = "smtp.domain.com";
$username = "user@domain.com";
$password = "validpass";
if(isset($_POST['submit'])) {
$address = $username.$mailprovider;
$emailTo = $address;
$body = "Name: $name \n\nMessage: $message";
$headers = array ('From' => 'user@domain.com', 'To' => $emailTo, 'Subject' => 'test');
$smtp = Mail::factory('smtp', array('host'=>$host, 'auth'=>true, 'username'=>$username, 'password'=>$password));
$mail = $smtp->send($emailTo, $headers, $body);
if(PEAR::isError ($mail)){
echo("<p>. $mail->getMessage().</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
$emailSent = true;
}
?>
$usernamevar for both the recipient part of the email address and for your authentication. Probably not what you intended to do. – jasonbar Feb 11 '11 at 23:34\nare\r\nespecially in the body of the emal – kjy112 Feb 11 '11 at 23:54