updated mailgun, mailsystem, honeypot, googleanalitycs, features, content_taxonomy

This commit is contained in:
2019-05-13 17:55:28 +02:00
parent 2ffad14939
commit e08a2639c6
54 changed files with 1911 additions and 423 deletions

View File

@@ -0,0 +1,28 @@
<?php
/**
* @file
* Default theme implementation of Mailgun mail.
*
* Available variables:
* - $subject: The message subject.
* - $body: The message body.
*
* @see template_preprocess_mailgun_message()
*/
?>
<html>
<head>
<style type="text/css">
body {
font-family: Verdana, Arial, sans-serif;
font-size: 12px;
}
</style>
</head>
<body>
<div>
<?php print $body; ?>
</div>
</body>
</html>