{$locale->pr("register_confirmation_email_text", $activeLink)}
这句代码修改成:
{sprintf( "请点击下面的链接来激活您的博客:
%s
现在就进入博客世界吧!祝您天天快乐!", $activeLink )}
结果发现无法发送邮件了。
不知道应该如何修改?
另外,我找到了这句代码:
/**
* create the message body
*/
function createBody(){
$body = $this->renderBodyTemplate(CONFIRM_MAIL_TEMPLATE,"summary");
$this->setBody($body) ;
}
我想应该就是这里是调用的地方了,但是跟进去却没发现使用
{$locale->pr("register_confirmation_email_text", $activeLink)}
的地方。
请教高手,此处
{$locale->pr("register_confirmation_email_text", $activeLink)}
修改代码一定要使用你们封装的函数,不能使用sprintf等系统提供的函数?