Thinkphp邮箱验证注册案例

function.php

<?php

/**
 * 系统邮件发送函数
 * @param string $to    接收邮件者邮箱
 * @param string $name  接收邮件者名称
 * @param string $subject 邮件主题
 * @param string $body    邮件内容
 * @param string $attachment 附件列表
 * @return boolean
 */
function think_send_mail($to, $name, $subject = '', $body = '', $attachment = null){
    $config = C('THINK_EMAIL');
    vendor("PHPMailer.PHPMailer");
    $mail = new \PHPMailer();
    $mail->CharSet    = 'UTF-8'; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码
    $mail->IsSMTP();  // 设定使用SMTP服务
    $mail->SMTPDebug  = 0;                     // 关闭SMTP调试功能
    // 1 = errors and messages
    // 2 = messages only
    $mail->SMTPAuth   = true;                  // 启用 SMTP 验证功能
    $mail->SMTPSecure = 'ssl';                 // 使用安全协议
    $mail->Host       = $config['SMTP_HOST'];  // SMTP 服务器
    $mail->Port       = $config['SMTP_PORT'];  // SMTP服务器的端口号
    $mail->Username   = $config['SMTP_USER'];  // SMTP服务器用户名
    $mail->Password   = $config['SMTP_PASS'];  // SMTP服务器密码
    $mail->SetFrom($config['FROM_EMAIL'], $config['FROM_NAME']);
    $replyEmail       = $config['REPLY_EMAIL']?$config['REPLY_EMAIL']:$config['FROM_EMAIL'];
    $replyName        = $config['REPLY_NAME']?$config['REPLY_NAME']:$config['FROM_NAME'];
    $mail->AddReplyTo($replyEmail, $replyName);
    $mail->Subject    = $subject;
    $mail->AltBody    = "为了查看该邮件,请切换到支持 HTML 的邮件客户端";
    $mail->MsgHTML($body);
    $mail->AddAddress($to, $name);
    if(is_array($attachment)){ // 添加附件
        foreach ($attachment as $file){
            is_file($file) && $mail->AddAttachment($file);
        }
    }
    return  $mail->Send() ? true : $mail->ErrorInfo;
}

Controller

    /**邮箱*/
    public function index(){
        if(!IS_POST){
            $this->display('index');
        }else{
            $name = I("post.name");
            $email = I("post.email");
            $data = D("Member")->create();
            $data['password'] = md5(I('post.password'));
            $res = D("Member")->add($data);
            think_send_mail("$email","尊敬的$name","欢迎使用邮箱验证方式,请点击下面的链接进行邮箱的验证!","http://thinkphp/index.php/Home/Index/verify/m_id/".$res);
        }
    }

    /**验证用户邮箱验证*/
    public function verify(){
        $w['m_id'] = I("get.m_id");
        $data['type'] = 1;
        $res = D('Member')->where($w)->save($data);
        if($res){
            $this->success("验证成功,赶快去登陆吧!");
        }else{
            $this->error("验证失败!请联系管理员!");
        }
    }

HTML

<form action="{:U('Index/index')}" method="post">
    用户名:<input type="text" name="name" id=""/><br/>
    密码:<input type="password" name="password" id=""/><br/>
    邮箱:<input type="email" name="email" id=""/><br/>
    <input type="submit" value="提交"/>
</form>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值