Skip to content

Instantly share code, notes, and snippets.

@internoma
Created February 12, 2016 16:45
Show Gist options
  • Save internoma/efa9e17f6c2a6eb0a6ca to your computer and use it in GitHub Desktop.
Save internoma/efa9e17f6c2a6eb0a6ca to your computer and use it in GitHub Desktop.
PHPMailer template implementation
$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;
<!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