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> |
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
function customAjax(options) { | |
if (options.success) { | |
// I would like to save the callback | |
temporaryVariable = options.success; | |
} | |
// Then I want to add some actions before to execute the callback | |
options.success = function () { | |
// Some actions | |
console.log('Some actions'); |