Advertisement
Guest User

email ting

a guest
Apr 9th, 2020
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1.  ini_set("SMTP", 'n3plcpnl0054.prod.ams3.secureserver.net');
  2.                          ini_set("sendmail_from", "noreply@daredicing.com");
  3.  
  4.                            $to = $email;
  5.                            $subject = "Email Verification";
  6.                            $message = "Hello, $username. Thank for signing up on daredicing.com, you will recieve an email shortly.
  7.                            <a href=\"http://daredicing.com/confirmemail.php?email=$email&token=$token\">Click Here</a><p> Best of luck from BigBoiGames Ltd";
  8.                            $header = "From: noreply@daredicing.com";
  9.                            $headers .= "MIME-Version: 1.0" . "\r\n";
  10.                            $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
  11.  
  12.                            mail($to, $subject, $message, $headers);
  13.  
  14.                            header("location: evar.php");
  15.                         mysqli_query($conn, $query);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement