本文整理汇总了PHP中email::__shortcuts方法的典型用法代码示例。如果您正苦于以下问题:PHP email::__shortcuts方法的具体用法?PHP email::__shortcuts怎么用?PHP email::__shortcuts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类email
的用法示例。
在下文中一共展示了email::__shortcuts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$this->mail->SetOptions($options);
$status = $this->mail->SendMail($this->pdh->get('user', 'email', array($user_id)), $this->user->data['user_email'], $this->in->get('subject'), $this->in->get('body'));
if ($status) {
$this->core->message($this->user->lang('adduser_send_mail_suc'), $this->user->lang('success'), 'green', true);
$this->tpl->add_js("jQuery.FrameDialog.closeDialog();");
} else {
$this->core->message($this->user->lang('error_email_send'), $this->user->lang('error'), 'red');
}
} else {
$this->core->message($this->user->lang('fv_invalid_email'), $this->user->lang('error'), 'red');
}
} else {
message_die($this->user->lang('noauth'), $this->user->lang('noauth_default_title'), 'access_denied');
}
}
}
public function display()
{
$user_id = $this->in->get('user', 0);
if ($user_id < 1) {
$this->core->message($this->user->lang('error_user_not_found'), $this->user->lang('error'), 'red');
} else {
$this->tpl->assign_vars(array('USER_ID' => $user_id, 'USERNAME' => $this->pdh->get('user', 'name', array($user_id)), 'BODY' => $this->in->get('body', ''), 'SUBJECT' => $this->in->get('subject', '')));
}
$this->core->set_vars(array('page_title' => $this->user->lang('adduser_send_mail'), 'template_file' => 'email.html', 'header_format' => 'simple', 'display' => true));
}
}
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
registry::add_const('short_email', email::__shortcuts());
}
registry::register('email');