Selaa lähdekoodia

Mise en page emails : adaptation nouvelle charte

refactoring
Guillaume Bourgeois 5 vuotta sitten
vanhempi
commit
7135b2411b
3 muutettua tiedostoa jossa 14 lisäystä ja 17 poistoa
  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 Näytä tiedosto

@@ -48,6 +48,6 @@ use common\models\CreditHistorique;
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 />
<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>

+ 1
- 1
common/mail/creditUser-text.php Näytä tiedosto

@@ -45,6 +45,6 @@ Bonjour <?= $user->name; ?>,</p>
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); ?>.
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

+ 12
- 15
common/mail/layouts/html.php Näytä tiedosto

@@ -51,22 +51,12 @@ use yii\helpers\Html;
<?php $this->head() ?>
<style type="text/css">
body {
padding: 0px;
margin: 0px ;
font-family: Arial ;
font-size: 14px ;
background-color: white ;
}
a {
color: #BB8757 ;
}
#header {
background-color: #F7F7F7 ;
border-bottom: 1px solid #e0e0e0 ;
height: 50px ;
text-align: center ;
color: #FF7F00 ;
}
#header .icon {
@@ -84,24 +74,31 @@ use yii\helpers\Html;
padding: 5px 15px ;
color: gray ;
border-top: dotted 1px #e0e0e0 ;
text-align: center ;
}
#link-distrib {
text-decoration: none ;
color: #FF7F00 ;
}
#link-distrib img {
width: 45px ;
}
#footer .baseline {
margin-top: 10px ;
}
</style>
</head>
<body>
<?php $this->beginBody() ?>
<div id="header">
<img class="icon" src="http://www.opendistrib.net/img/logo-distrib.png" alt="distrib" />
</div>
<div id="content">
<?= $content ?>
</div>
<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>
<?php $this->endBody() ?>
</body>

Loading…
Peruuta
Tallenna