Advertisement
Guest User

Untitled

a guest
May 26th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. function sendRegisterMail($nick, $email) {
  2.  
  3. $betreff = 'welcome to 6mates.eu';
  4.  
  5. $header = "MIME-Version: 1.0\r\n";
  6. $header .= "Content-type: text/html; charset=utf-8\r\n";
  7.  
  8. $header .= "From: 6mates.eu< support@6mates.eu>\r\n";
  9. $header .= "Reply-To: $nick\r\n";
  10. $header .= "X-Mailer: PHP " . phpversion();
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17. $mailtext = '<html>
  18. <head>
  19. <style>
  20. @import url("https://fonts.googleapis.com/css?family=Julius+Sans+One");
  21. @import url("https://fonts.googleapis.com/css?family=Roboto:100");
  22. @import url("https://fonts.googleapis.com/css?family=Raleway:200,400");
  23.  
  24.  
  25. .website-title {
  26. color: white
  27.  
  28. font-family: "Raleway", sans-serif;
  29. letter-spacing: 0.2em;
  30. font-weight: bold;
  31. }
  32.  
  33. .website-titleUI {
  34. color: white
  35. font-family: "Raleway", sans-serif;
  36. letter-spacing: 0.1em;
  37. font-weight: bold;
  38. }
  39.  
  40. .team-avatar {
  41. vertical-align: middle;
  42. width: 110px;
  43. border-radius: 60%;
  44. }
  45. text {
  46. color: black;
  47. font-family: "Raleway", sans-serif;
  48. }
  49.  
  50. h1 {
  51. font-family: "Raleway", sans-serif;
  52. letter-spacing: 0.1em;
  53. font-weight: bold;
  54. text-align: center;
  55. }
  56.  
  57. .website-footer-links3 {
  58. color: white;
  59. margin-top: 10px;
  60. font-family: "Raleway", sans-serif;
  61. font-weight: bold;
  62. font-size: 10px;
  63. text-transform: uppercase;
  64. text-align: right;
  65. }
  66.  
  67. </style>
  68. </head>
  69.  
  70. <body>
  71. <br><br><br><br>
  72.  
  73. </body>
  74. </html>
  75. ';
  76.  
  77. mail($email, $betreff, $mailtext, $header);
  78.  
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement