网站建设discuz发送短消息时同时发送邮件
找到代码:
- loaducenter();
- $return = uc_pm_send($fromid, $toid, addslashes($subject), addslashes($message), 1, $replypmid, $isusername, $type);
- if($return > 0 && $fromid) {
- foreach(explode(',', $fromid) as $v) {
- useractionlog($fromid, 'pmid');
- }
- }
复制代码 下方增加如下代码:
- $touser = C::t('common_member')->fetch_by_username($toid);
- if(empty($touser)) {
- $touser = getuserbyuid($toid);
- }
- if(!empty($touser['email'])) {
- include_once libfile("function/mail");
- $msg = "会员{$_G['username']}向您发送了消息:<br />".$message;
- sendmail($touser['email'], '短消息提醒', $msg);
- }
复制代码 解释一下,toid可能是用户名,也可能是uid,所以判断着获取了。然后就是发送邮件。
|