当我使用模板功能中的值时,我发现发件人姓名,主题和发件人电子邮件地址为空的问题,但如果我直接在邮件功能中写入电子邮件和主题,则会出现问题。
修改
我想做什么
1 即可。创建可根据指定类型所需的类型进行切换的电子邮件模板。
$type = 'account_verify';
$email = new email($type);
$email->send('user@domain.com');
2 即可。有一个方法可以根据$ type切换这些模板。 我希望在每个模板中指定所有参数,例如" subject"," from_email"," sender_name" ...以便我只调用$ email - >仅使用用户电子邮件发送(' user_email')方法,其余参数应在指定的模板上找到。
请参阅下面的模板方法。
好的,这是每个模板的外观。
<?php
$token = self::token();
$user = self::user();
$today = date("M j - Y, g:i a");
$verify_link = ""
$from_email = 'department@domain.com';
$sender_name = 'department Name';
$department_name = 'department';
$subject = 'Verify your account';
ob_start();
?>
<!DOCTYPE html>
<html>
..........
<?php
?>
其余如下
public $senderName;
public $from_email;
public $dpt;
public $type;
public $subject;
private function template(){
include_once 'templates/accounts/account_verify.php';
//// the following variable like, "$from_email", are set inside the
///// included template. Every template should have its own
/////// parameters set.
$this->from_email = $from_email;
$this->senderName = $sender_name;
$this->dpt = $department_name;
$this->subject = $subject;
return ob_get_clean();
}
发送电子邮件的功能
public function send($to_email ,$color_scheme = NULL){
var_dump('SUBJECT : '.$this->subject);
///// here if I dump the $this->subject i can see it,
//// but the subject is empty on the email.
$subject = $this->from_email;
$from = "".$subject."<user@domain.com>";
$headers = "From:" . $from . "\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail($to_email,$this->subject,self::template(),$headers);
}
答案 0 :(得分:0)
您的问题的关键是面向对象编程。将您的包含文件组织成一个类,您可以在包含它之后立即初始化它。然后,您将能够访问您尝试直接获取的所有属性(如果他们是公开的),或者通过一些获取方法。然后,您还可以通过将模板html放入另一个get方法来取消输出缓冲。有点像...
return $templateObj->getHTML();
使每个模板中的类相同,或者在类型后面命名以简化类初始化。
$templateObj = new Template();
//or
$templateObj = new $YourTemplateName();
//where $YourTemplateName == "Account_Verify" or whichever template you're loading