Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ini_set('SMTP', "smtp.numericable.fr");
- // ini_set("smtp_port","25");
- $admin_email = "[email protected]";
- $user_email = $this->request->data['email'];
- $msg = "To activate your account, please click on this link : http://localhost"
- . Router::url('/') . "users/activate?email="
- . urlencode($user_email) . "&key=$token";
- $headers = 'MIME-Version: 1.0' . "\n"; // Version MIME
- $headers .= 'Reply-To: '.$admin_email."\n"; // Mail de reponse
- $headers .= 'From: "'.$admin_email.'"'; // Expediteur
- $headers .= 'Delivered-to: '.$user_email."\n"; // Destinataire
- if(mail($user_email, "Registration Confirmation", $msg, $headers))
- {
- echo "ca marche ?";
- }
- else
- {
- echo "marche po";
- }
Advertisement
Add Comment
Please, Sign In to add comment