Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. <?php
  2. $to = 'craftedstevecz@gmail.com';
  3.  
  4. $subject = 'Testování php send mailu v9';
  5.  
  6. $headers = "From: marek.prusa.17@gmail.com \r\n";
  7. $headers .= "Reply-To: marek.prusa.17@gmail.com \r\n";
  8. $headers .= "MIME-Version: 1.0\r\n";
  9. $headers .= "Content-Type: text/html; charset=UTF-8\r\n";
  10.  
  11.  
  12. $message = '<html><head><style type="text/css">*{font-family:Calibri;font-size:16px}body{margin:0}a{text-decoration:none}header,footer{background-color:#f58220;height:50px}header{text-align:center}footer{padding-right:100px;text-align:right}header img{height:35px;margin-top:7px}footer img{height:35px;margin-top:7px}aside{float:left;width:16%;height:515px;background-size:cover}.aside-1{background:url(http://fru-dev.prokop-kopecny.cz/img/aside-222.jpg) no-repeat right / auto 515px;}.aside-2{background:url(http://fru-dev.prokop-kopecny.cz/img/aside-111.jpg) no-repeat left / auto 515px;}section{width:68%;text-align:center;padding-top:60px;padding-bottom:20px;float:left;position:relative;z-index:999}.rating{width:260px;display:inline-block;position:relative}.grade{display:inline-block;height:30px;width:30px;border:3px solid #f58220;color:#f58220;font-size:24px;line-height:30px;margin:3px}.send{color:#f58220;font-weight:700;width:200px}.grade:hover,.clickhere:hover{background-color:#f58220;color:#fff;cursor:pointer}.clickhere{display:inline-block;border:3px solid #f58220;height:40px;line-height:40px;width:210px;color:#f58220;font-size:20px}</style></head><body>';
  13. $message .= '<header><img src="https://ci4.googleusercontent.com/proxy/6cA291Px1TjNqzGji-7SmNcKqIMya5ulLetkxELXH8WigBcHLC8Ac1iy1HyDczJogxn_6Vj2AQkb-hbL0-farFDeuFuOlhsiAA=s0-d-e1-ft#http://fru-dev.prokop-kopecny.cz/img/front/logo.png" class="m_8108022785388659265gmail-m_5542339260018583350CToWUd m_8108022785388659265gmail-CToWUd CToWUd" style="height:35px;margin-top:7px"></header><aside class="aside-1"></aside><section><p>Ahoj, nedávno jsi si objednal(a) rozvoz ovocných/zeleninových koktejlů.</p><p>Děláme vše, co je v našich silách, abychom nabídli co nejlepší služby a tvé hodnocení nám v tom může hodně pomoci.</p><p>Ohodnoť spokojenost nastupnici 1-5, kdy 1 je nejlepší a 5 nejhorší.</p><div class="rating"><a href="https://fruitisimo.cz/hodnoceni/?mark=1&order_id={$order->id}" class="grade" >1</a><a href="https://fruitisimo.cz/hodnoceni/?mark=2&order_id={$order->id}" class="grade">2</a><a href="https://fruitisimo.cz/hodnoceni/?mark=3&order_id={$order->id}" class="grade">3</a><a href="https://fruitisimo.cz/hodnoceni/?mark=4&order_id={$order->id}" class="grade">4</a><a href="https://fruitisimo.cz/hodnoceni/?mark=5&order_id={$order->id}" class="grade">5</a><a class="send">ODESLAT HODNOCENÍ >></a></div><p>Chtěl(a) bys zanechat komentář?</p><a href="https://fruitisimo.cz/hodnoceni/?order_id={$order->id}" class="clickhere" >KLIKNI ZDE</a><p>Děkujeme za tvůj čas!</p></section><aside class="aside-2"></aside><div style="clear: both;"></div><footer><a href="https://www.facebook.com/fruitisimo/"><img src="http://fru-dev.prokop-kopecny.cz/img/fb.png"></a><a href="https://www.youtube.com/channel/UCWXRVOwICMQjZNNmONK8gSQ"><img src="http://fru-dev.prokop-kopecny.cz/img/yt.png"></a><a href="https://www.instagram.com/fruitisimo.cz/"><img src="http://fru-dev.prokop-kopecny.cz/img/insta.png"></a></footer>';
  14. $message .= "</body></html>";
  15.  
  16. if(mail($to,$subject,$message,$headers))
  17. {
  18. echo('Success');
  19. }
  20. else
  21. {
  22. echo('Error :(');
  23. }
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement