Browse Source

Mise en page emails : adaptation nouvelle charte

refactoring
Guillaume Bourgeois 5 years ago
parent
commit
7135b2411b
3 changed files with 14 additions and 17 deletions
  1. +1
    -1
      common/mail/creditUser-html.php
  2. +1
    -1
      common/mail/creditUser-text.php
  3. +12
    -15
      common/mail/layouts/html.php

+ 1
- 1
common/mail/creditUser-html.php View File

de <?php if($creditForm->type == CreditHistory::TYPE_CREDIT): ?>créditer<?php else: ?>débiter<?php endif; ?> votre compte de <strong><?= Price::format($creditForm->amount); ?></strong> sur le site <a href="http://www.opendistrib.net/">distrib</a>.</p> de <?php if($creditForm->type == CreditHistory::TYPE_CREDIT): ?>créditer<?php else: ?>débiter<?php endif; ?> votre compte de <strong><?= Price::format($creditForm->amount); ?></strong> sur le site <a href="http://www.opendistrib.net/">distrib</a>.</p>


<p>Votre compte est désormais à <strong><?= Price::format($userProducer->credit); ?></strong><br /> <p>Votre compte est désormais à <strong><?= Price::format($userProducer->credit); ?></strong><br />
<a href="<?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['site/credit-history','slug_producer' => $producer->slug]) ?>">Cliquez ici</a> pour voir l'historique de votre crédit.</p>
<a href="<?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['credit/history','slug_producer' => $producer->slug]) ?>">Cliquez ici</a> pour voir l'historique de votre crédit.</p>


<p>À bientôt.</p> <p>À bientôt.</p>

+ 1
- 1
common/mail/creditUser-text.php View File

Votre producteur <?= $producer->name; ?> vient de <?php if($creditForm->type == CreditHistory::TYPE_CREDIT): ?>créditer<?php else: ?>débiter<?php endif; ?> votre compte de <?= Price::format($creditForm->amount); ?> sur le site http://www.laboiteapain.net/ Votre producteur <?= $producer->name; ?> vient de <?php if($creditForm->type == CreditHistory::TYPE_CREDIT): ?>créditer<?php else: ?>débiter<?php endif; ?> votre compte de <?= Price::format($creditForm->amount); ?> sur le site http://www.laboiteapain.net/


Votre compte est désormais à : <?= Price::format($userProducer->credit); ?>. Votre compte est désormais à : <?= Price::format($userProducer->credit); ?>.
Suivez ce lien pour voir l'historique de votre crédit : <?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['site/credit-history','slug_producer' => $producer->slug]) ?>">
Suivez ce lien pour voir l'historique de votre crédit : <?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['credit/history','slug_producer' => $producer->slug]) ?>">


À bientôt À bientôt

+ 12
- 15
common/mail/layouts/html.php View File

<?php $this->head() ?> <?php $this->head() ?>
<style type="text/css"> <style type="text/css">
body { body {
padding: 0px;
margin: 0px ;
font-family: Arial ; font-family: Arial ;
font-size: 14px ; font-size: 14px ;
background-color: white ;
} }
a { a {
color: #BB8757 ;
}
#header {
background-color: #F7F7F7 ;
border-bottom: 1px solid #e0e0e0 ;
height: 50px ;
text-align: center ;
color: #FF7F00 ;
} }
#header .icon { #header .icon {
padding: 5px 15px ; padding: 5px 15px ;
color: gray ; color: gray ;
border-top: dotted 1px #e0e0e0 ; border-top: dotted 1px #e0e0e0 ;
text-align: center ;
} }
#link-distrib { #link-distrib {
text-decoration: none ; text-decoration: none ;
color: #FF7F00 ; color: #FF7F00 ;
} }
#link-distrib img {
width: 45px ;
}
#footer .baseline {
margin-top: 10px ;
}
</style> </style>
</head> </head>
<body> <body>
<?php $this->beginBody() ?> <?php $this->beginBody() ?>
<div id="header">
<img class="icon" src="http://www.opendistrib.net/img/logo-distrib.png" alt="distrib" />
</div>
<div id="content"> <div id="content">
<?= $content ?> <?= $content ?>
</div> </div>
<div id="footer"> <div id="footer">
<p><a id="link-distrib" href="http://www.opendistrib.net/">distrib</a> | Plateforme de gestion de commandes</p>
<a id="link-distrib" href="http://www.opendistrib.net/"><img src="http://www.opendistrib-dev.net/img/logo-distrib.png" alt="distrib" /></a>
<div class="baseline">Plateforme de gestion de commandes</div>
</div> </div>
<?php $this->endBody() ?> <?php $this->endBody() ?>
</body> </body>

Loading…
Cancel
Save