How to use amazon ses on godaddy hosting

Cheyenne

New Member
I am trying to send mails using this tutorial.http://www.9lessons.info/2012/02/amazon-simple-email-service-smtp-using.html My Send_Mail.php is like this:\[code\]<?phpfunction Send_Mail($to,$subject,$body){require 'class.phpmailer.php';$from = "[email protected]";$mail = new PHPMailer();$mail->IsSMTP(true); // SMTP$mail->SMTPAuth = true; // SMTP authentication$mail->Mailer = "smtp";$mail->Host = "tls://email-smtp.us-east-1.amazonaws.com"; // Amazon SES server, note "tls://" protocol$mail->Port = 465; // set the SMTP port$mail->Username = "AKIAJ3S57QKA7VQ"; // SES SMTP username$mail->Password = "Avl2i0lbSSw2l7477f0urgC/Ay1r7sQrEF/"; // SES SMTP password$mail->SetFrom($from, '[email protected]');$mail->AddReplyTo($from,'[email protected]');$mail->Subject = $subject;$mail->MsgHTML($body);$address = $to;$mail->AddAddress($address, $to);if(!$mail->Send()){return "failed";}else{return "success";}}?>\[/code\]my index.php is like this\[code\]<?phprequire 'Send_Mail.php';$to = "[email protected]";$subject = "Test Mail Subject yyyyyyyyyyyy";$body = "Hi<br/>Test Mail<br/>Amazon SES yyyyyyyy"; // HTML tagsecho Send_Mail($to,$subject,$body);echo "hello done";?>\[/code\]I have added SPF records in my domain on godaddy hosting it is like this: v=spf1 mx include:amazonaws.com include:amazonses.com ~allI am not able to send mail, Please guide me .. thanks
 
Back
Top