1、配置邮箱发送
下载的附件,修改user.php文件

2、判断邮箱是否已注册
e/class/user.php文件下增加下面的代码
function eail_tis($error="",$gotourl="",$ecms=1){
global $empire,$editor,$ecmslang,$public_r;
if($editor==1){$a="../";}
elseif($editor==2){$a="../../";}
elseif($editor==3){$a="../../../";}
else{$a="";}
if(strstr($gotourl,"(")||empty($gotourl))
{
$gotourl_js="history.go(-1)";
$gotourl="javascript:history.go(-1)";
}
else
{$gotourl_js="self.location.href='$gotourl';";}
if(empty($error))
{$error="DbError";}
@include($a."../message/index.php");
$empire=null;
exit();
}
//加入判断是否该邮箱为未注册的
$eail=$empire->fetch1("select count(*) as email from ".$user_tablename." where email='".$email."'");
if ($eail[email]!=0){
eail_tis("该邮箱已注册过了,请使用其他的邮箱注册","history.go(-1)",1);
} - 常用邮箱SMTP服务器地址大全 [2024-08-29]
- 基于cloudflare搭建的临时邮箱开源源码 [2024-06-27]
- 免费邮箱批量群发工具 [2024-01-14]
- 国外免费邮箱分享 [2023-09-06]
- 免费临时匿名收件邮箱在线工具大全 [2023-08-29]


