web-dev-qa-db-ja.com

phpを使用してテンプレートでメールを送信する

Phpを使用してメールを送信し、メールにテンプレートデザインを追加するにはどうすればよいですか?私はこれを使用しています:

$to = "[email protected]";  
$subject = "Test mail";  
$message = "Hello! This is a simple email message.";  
$from = "[email protected]";  
$headers = "From: $from";  
mail($to,$subject,$message,$headers);  
echo "Mail Sent.";  

そしてそれはうまくいきます!問題は、テンプレートを追加する方法だけです。

36
anonymous123

これほど簡単なものを試してみませんか:

$variables = array();

$variables['name'] = "Robert";
$variables['age'] = "30";

$template = file_get_contents("template.html");

foreach($variables as $key => $value)
{
    $template = str_replace('{{ '.$key.' }}', $value, $template);
}

echo $template;

あなたのテンプレートファイルは次のようなものです:

<html>

<p>My name is {{ name }} and I am {{ age }} !</p>

</html>
84
Jivan

これで小さな割れ目があります:)

_class Emailer
{
    var $recipients = array();
    var $EmailTemplate;
    var $EmailContents;

    public function __construct($to = false)
    {
        if($to !== false)
        {
            if(is_array($to))
            {
                foreach($to as $_to){ $this->recipients[$_to] = $_to; }
            }else
            {
                $this->recipients[$to] = $to; //1 Recip
            }
        }
    }

    function SetTemplate(EmailTemplate $EmailTemplate)
    {
        $this->EmailTemplate = $EmailTemplate;            
    }

    function send() 
    {
        $this->EmailTemplate->compile();
        //your email send code.
    }
}
_

関数SetTemplate() ...に注目してください。

Heresは小さなテンプレートクラスです

_class EmailTemplate
{
    var $variables = array();
    var $path_to_file= array();
    function __construct($path_to_file)
    {
         if(!file_exists($path_to_file))
         {
             trigger_error('Template File not found!',E_USER_ERROR);
             return;
         }
         $this->path_to_file = $path_to_file;
    }

    public function __set($key,$val)
    {
        $this->variables[$key] = $val;
    }


    public function compile()
    {
        ob_start();

        extract($this->variables);
        include $this->path_to_file;


        $content = ob_get_contents();
        ob_end_clean();

        return $content;
    }
}
_

ここに小さな例がありますが、スクリプトのコアを実行する必要がありますが、これは開始するための素敵なレイアウトを提供します。

_$emails = array(
    '[email protected]',
    '[email protected]'
);

$Emailer = new Emailer($emails);
 //More code here

$Template = new EmailTemplate('path/to/my/email/template');
    $Template->Firstname = 'Robert';
    $Template->Lastname = 'Pitt';
    $Template->LoginUrl= 'http://stackoverflow.com/questions/3706855/send-email-with-a-template-using-php';
    //...

$Emailer->SetTemplate($Template); //Email runs the compile
$Emailer->send();
_

それだけです。オブジェクトの使用方法とそこからの非常に単純な方法を知っていれば、oohとテンプレートは次のようになります。

_Welcome to my site,

Dear <?php echo $Firstname ?>, You have been registered on our site.

Please visit <a href="<?php echo $LoginUrl ?>">This Link</a> to view your upvotes

Regards.
_
46
RobertPitt

テンプレートファイルを作成します。たとえば、

/path/to/templates/template.twig:

{{name}}様、

{{subject}}についてお問い合わせいただきありがとうございます。

次に、 https://twig.symfony.com/doc/2.x/api.html の指示に従って、twigテンプレートエンジンと- 作曲家

require_once '/path/to/vendor/autoload.php';

$loader = new Twig_Loader_Filesystem('/path/to/templates');
$twig = new Twig_Environment($loader, array());

次に、メールをレンダリングして送信します。

$to = "[email protected]";  
$subject = "Test mail";  
$message = $twig->render('template.twig', array(
   'name' => 'Fred',
   'subject' => 'philately',
));
$from = "[email protected]";  
$headers = "From: $from";  
mail($to,$subject,$message,$headers);  
1
bdsl

私の簡単な例

template.php

<?php
class Template
{
  function get_contents($templateName, $variables) {
    $template = file_get_contents($templateName);

    foreach($variables as $key => $value)
    {
        $template = str_replace('{{ '.$key.' }}', $value, $template);
    }
    return $template;
  }
}
?>

contact-us.tpl

Name: {{ name }}
Email:  {{ email }}
subject:  {{ subject }}
------messages------
{{ messages }}
---------------------

main.php

<?php
include_once 'template.php';

$name = "Your name";
$to = "[email protected]";  
$subject = "Test mail";  
$message = "Hello! This is a simple email message.";  
$from = "[email protected]";  
$headers = "From: $from"; 

$text = Template::get_contents("contact-us.tpl", array('name' => $name, 'email' => $from, 'subject' => $subject, 'messages' => $message));
echo '<pre>';
echo $text;
echo '<pre>';

$mail = @mail($to, $subject, $text, $headers); 
if($mail) {
  echo "<p>Mail Sent.</p>"; 
}
else {
  echo "<p>Mail Fault.</p>"; 
}
?>
1

まず、HTMLテンプレートを作成する必要があります。

<form action="#" id="ContactForm" method="post" enctype="multipart/form-data">
    <table border="0" cellspacing="5" cellpadding="5" style="background-color:#CCCCCC; text-align:center;">
        <tr>
             <td width="15%">Name:</td>
             <td width="85%"><input name="name" type="text" required></td>
         </tr>
         <tr>
             <td>Email:</td>
             <td><input name="email" type="email" required></td>
         </tr>

         <tr>
             <td colspan="2"><input name="sub" type="submit" value="Submit"></td>
         </tr>

     </table>                      
</form>

以下のコードは、テンプレートを使用したメール機能コードです。

if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $name=$_REQUEST['name'];
    $email=$_REQUEST['email'];
    $to=$email; //change to ur mail address
    $subject="UandBlog - Send Email Template Demo";
    $message =  file_get_contents('Your template path'); // Your Template        
    $headers = 'MIME-Version: 1.0'."\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1'."\r\n";
    $headers .= "From: [email protected]"; 

    mail($to, $subject, $message, $headers); 
}

Www.uandblog.comからテンプレート付きの完全なコードをダウンロードすることもできます

リンクは http://www.uandblog.com/How-to-Send-Mail-with-Email-or-HTMLTemplate-using-php

0

呼び出しファイルと同じように、テンプレートで$thisを使用できます。

ob_start コマンドの後にテンプレートを含めて、そのコンテンツを取得するだけです。

$this->customer = 1234;    //* This variable is used in the template
ob_start();
include 'template.php';
$template = ob_get_clean();
var_dump($template);      //* Outputs '<b>1234</b>'

// template.php
<b><? echo $this->customer ?></b>
0
T30