Created
February 12, 2016 16:45
-
-
Save internoma/efa9e17f6c2a6eb0a6ca to your computer and use it in GitHub Desktop.
PHPMailer template implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$tmpl_var = [ | |
'%nombre%', | |
'%apellidos%' | |
]; | |
$values = [ | |
'nombre' => 'Alfredo', | |
'apellidos' => 'González Portero' | |
]; | |
$tmpl = file_get_contents('mail.tmpl'); | |
$body = str_replace($tmpl_var, $values, $tmpl); | |
$body = preg_replace('/<title>(.*?)<\/title>/', '', $body); | |
$bodyTXT = preg_replace('/[\t\n]{2,}/', '', strip_tags($body) ); | |
echo $body; | |
echo $bodyTXT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Prueba de mail como template</title> | |
</head> | |
<body> | |
<p style="font-family: sans-serif;">Esto es una prueba donde habrá que poner el nobre: <strong>%nombre%</strong> también los apellidos: <strong>%apellidos%</strong>.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment