Maybe someone here is familiar with using Qmail remotely?
One more thing, I can use both pop3(via outlook & thunderbird) & PHP SquirrelMail, so I know that the account works, both sending & receiving mail.
<?php
/*
qmail setup
*/
function authgMail($from, $namefrom, $to, $nameto, $subject, $message) {
/* your configuration here */
$smtpServer = "192.168.xxx.xxx"; //ip accepted as well
$port = "25"; // should be 25 by default
$timeout = "45"; //typical timeout. try 45 for slow servers
$username = "sales@mydomain.com"; //the login for your smtp
$password = "myPA$$"; //the pass for your smtp
$localhost = "127.0.0.1";
$newLine = "\r\n"; //var just for nelines in MS
$secure = 0; //change to 1 if you need a secure connect
/* you shouldn't need to mod anything else */
//connect to the host and port
$smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout);
$smtpResponse = fgets($smtpConnect, 4096);
if(empty($smtpConnect)) {
$output = "Failed to connect: $smtpResponse";
echo $output;
return $output;
}
else {
$logArray['connection'] = "<p>Connected to: $smtpResponse";
echo "<p />connection accepted<br>".$smtpResponse."<p />Continuing<p />";
}
//you have to say HELO again after TLS is started
fputs($smtpConnect, "HELO $localhost". $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['heloresponse2'] = "$smtpResponse";
//request for auth login
fputs($smtpConnect,"AUTH LOGIN" . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['authrequest'] = "$smtpResponse";
//send the username
fputs($smtpConnect, base64_encode($username) . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['authusername'] = "$smtpResponse";
//send the password
fputs($smtpConnect, base64_encode($password) . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['authpassword'] = "$smtpResponse";
//email from
fputs($smtpConnect, "MAIL FROM: <$from>" . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['mailfromresponse'] = "$smtpResponse";
//email to
fputs($smtpConnect, "RCPT TO: <$to>" . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['mailtoresponse'] = "$smtpResponse";
//the email
fputs($smtpConnect, "DATA" . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['data1response'] = "$smtpResponse";
//construct headers
$headers = "MIME-Version: 1.0" . $newLine;
$headers .= "Content-type: text/html; charset=iso-8859-1" . $newLine;
$headers .= "To: $nameto <$to>" . $newLine;
$headers .= "From: $namefrom <$from>" . $newLine;
//observe the . after the newline, it signals the end of message
fputs($smtpConnect, "To: $to\r\nFrom: $from\r\nSubject: $subject\r\n$headers\r\n\r\n$message\r\n.\r\n");
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['data2response'] = "$smtpResponse";
// say goodbye
fputs($smtpConnect,"QUIT" . $newLine);
$smtpResponse = fgets($smtpConnect, 4096);
$logArray['quitresponse'] = "$smtpResponse";
$logArray['quitcode'] = substr($smtpResponse,0,3);
fclose($smtpConnect);
//a return value of 221 in $retVal["quitcode"] is a success
return($logArray);
}
$err=0;
$err_msg="This function is not yet implimented.";
if($_POST['name_']!="") { echo $_POST['name_']."<br>"; }
else {
$err=1;
$err_msg="You must include your name";
}
if($_POST['day_phone_']!="") {echo $_POST['day_phone_']."<br>"; }
else {
$err=1;
$err_msg="You must include a daytime phone number.";
}
if($_POST['add_']!="") { echo $_POST['add_']."<br>"; }
else {
$err=1;
$err_msg="You must include your address.";
}
if($_POST['city_']!="") { echo $_POST['city_']."<br>"; }
else {
$err=1;
$err_msg="You must include the city the vehicle is located in.";
}
if($_POST['email']!="") { echo $_POST['email']."<br>"; }
else {
$err=1;
$err_msg="You must include the city the vehicle is located in.";
}
if($_POST['email']!="") { echo $_POST['email']."<br>"; }
else {
$err=1;
$err_msg="You must include your e-mail address.";
}
echo $err_msg;
if($err<=0) {
$from="sales@mydomain.com";
$namefrom="Akron Sales";
$to = "no2pencil@mydomain.com";
$nameto = "no2pencil";
$message = "Test from My Domain";
authgMail($from, $namefrom, $to, $nameto, $subject, $message);
}
else {
echo "<p /> This form was not filled out correctly, please correct any mistakes.";
}
?>

New Topic/Question
Reply



MultiQuote





|