使用SMTP在EC2服务器上发送激活电子邮件

时间:2013-10-09 17:05:37

标签: php email amazon-ec2 smtp activation

这是我在这里的第一个问题,所以感谢大家阅读本文。 我正在按照PHP学院关于Register& amp;登录部分。

我正在使用亚马逊的EC2服务(到目前为止工作得很好),我想知道如何更改我的代码以使用我的SMTP服务器(来自其他虚拟主机)发送我的激活电子邮件。 见下面的代码。 如果您有任何疑问,请告诉我。再次,这是我的第一次。

感谢您的帮助。

亲切的问候, 恩里科·尤斯曼

General.php文件:

function email($to, $ubject, $body) {
mail($to, $subject, $body, 'From: activate@proxico.nl');}

Users.php文件:

function register_user($register_data) {

array_walk($register_data, 'array_sanitize');
        $register_data['password'] = md5($register_data['password']);

        $fields = '`' . implode('`, `', array_keys($register_data)) . '`';
        $data = '\'' . implode('\', \'', $register_data) . '\'';

        mysql_query("INSERT INTO `users` ($fields) VALUES ($data)");
        email($register_data['email'], 'Activate your account',"Hello " . $register_data['first_name'] . ",\n\nYou need to activate your account, so use the link below:\n\nhttp://ec2-54-229-189-136.eu-west-1.compute.amazonaws.com/activate.php?email=" . $register_data['email'] . "&email_code=" . $register_data['email_code'] . " \n\n - Proxico");

}

Register.php文件:

if (isset($_GET['success']) && empty($_GET['success'])) {
    echo 'You\'ve been registered successfully! Please check your email for an activation link. Didn\'t get an email? Click here to resend.';
} else {
    if (empty($_POST) === false && empty($errors) === true) {
    $register_data = array(
        'username'      => $_POST['username'],
        'password'      => $_POST['password'],
        'first_name'    => $_POST['first_name'],
        'last_name'     => $_POST['last_name'],
        'email'         => $_POST['email'],
        'email_code'    => md5($_POST['username'] + microtime())
    );

    register_user($register_data);
    header('Location: register.php?success');
    exit();


} else if (empty($errors) === false) {
    echo output_errors($errors);
    // output register errors
}

3 个答案:

答案 0 :(得分:1)

您需要编辑php.ini文件以指定相应的SMTP服务器参数,或者更好地使用其他方法:

Sending email with PHP from an SMTP server

答案 1 :(得分:1)

使用PHPMailer类在代码中轻松指定smtp服务器。否则只需修改php.ini文件。

https://code.google.com/a/apache-extras.org/p/phpmailer/

答案 2 :(得分:1)

使用Swiftmailer

function email($to, $subject, $body) {
    require_once('swift/lib/swift_required.php');

    try {
        $transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25)
            ->setUsername('your username')
            ->setPassword('your password')
        ;
        $mailer = Swift_Mailer::newInstance($transport);
        $message = Swift_Message::newInstance()
            ->setFrom('activate@proxico.nl', 'Activation - Proxico')
            ->setTo($to)
            ->setSubject($subject)
            ->setBody($body, 'text/html')
        ;
        return $mailer->send($message);

    } catch (Exception $e) {
        return false;
    }
}