Created
November 29, 2013 14:53
-
-
Save Fractaliste/7706858 to your computer and use it in GitHub Desktop.
Monde-fimormidable email view
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
<body style="background-color: #FFDB73; padding: 10px;"> | |
<img src="{{$message->embed('email/titre.png')}}" style="margin: 7px 0px 0px 7px"/> | |
<img src="{{$message->embed('email/banniere.png')}}" | |
style="-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; | |
max-height: 3em; width: 70%;"/> | |
<section style="margin-left: 10px;"> | |
<h2>Objet : Vous avez envoyé un message depuis http://monde-fimormidable.fr</h2> | |
<p>Bonjour, et merci pour l'intérêt que vous portez à mon site !</p> | |
<p>Je vous confirme que j'ai bien reçu votre message. Je vais essayer d'y répondre le plus vite possible.</p> | |
<p>Pour rappel voici son contenu :</p> | |
<blockquote style="background-color: #FFCE40; padding: 10px;"> | |
<p><strong>Nom : </strong>{{{$data['nom']}}}</p> | |
<p><strong>Email : </strong>{{{$data['email']}}}</p> | |
<p><strong>Téléphone : </strong>{{{$data['telephone']}}}</p> | |
<p><strong>Motif de contact : </strong>{{{Config::get('enum.motif_contact.'.$data['motif'])}}}</p> | |
<p><strong>Message : </strong>{{{$data['message']}}}</p> | |
</blockquote> | |
<p>A très bientôt sur <a href="http://monde-fimormidable.fr">http://monde-fimormidable.fr</a> !</p> | |
<p style="margin-left: 30px;">Amandine</p> | |
<p style="font-size: 0.8em; font-style: italic;">PS : Ceci est un message automatique, merci de ne pas y répondre.</p> | |
</section> | |
</body> |
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
Un monde fimormidable | |
Objet : Vous avez envoyé un message depuis http://monde-fimormidable.fr | |
Bonjour, et merci pour l'intérêt que vous portez à mon site ! | |
Je vous confirme que j'ai bien reçu votre message. Je vais essayer d'y répondre le plus vite possible. | |
Pour rappel voici son contenu : | |
>>> Nom : {{{$data['nom']}}} | |
>>> Email : {{{$data['email']}}} | |
>>> Téléphone : {{{$data['telephone']}}} | |
>>> Motif de contact : {{{Config::get('enum.motif_contact.'.$data['motif'])}}} | |
>>> Message : {{{$data['message']}}} | |
A très bientôt sur http://monde-fimormidable.fr ! | |
Amandine | |
PS : Ceci est un message automatique, merci de ne pas y répondre. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment