⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 send.php

📁 This script was designed as a stand alone script which can be easily intergrate into any existing we
💻 PHP
字号:
<?php// *************************************************************************************************// Title: 		PHP AGTC-Membership system v1.1a// Developed by: Andy Greenhalgh// Email:		andy@agtc.co.uk// Website:		agtc.co.uk// Copyright:	2005(C)Andy Greenhalgh - (AGTC)// Licence:		GPL, You may distribute this software under the terms of this General Public License// *************************************************************************************************//include "config.php";// DO NOT EDIT BELOW THIS LINE, UNLESS YOU KNOW WHAT YOU ARE DOINGif ($username == "" or $userpass == "" or $useremail == ""){$msg3=true;}$email = $useremail; if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", $email)) {   $msg4 = true; $pass = "no"; }if (!isset($useremail)) echo "Error, Please re-send $username" ; $todayis = date("l, F j, Y, g:i a") ;$subject = "You are now a registere member - Please login";$message = " $todayis [EST] \nFrom: $sendersName \n\nYou are now registered as a member you can now login \nThis email was sent by an auto responder, you cannot reply to this email.";$from = "From: $sendersEmail";if ($email != "") mail($email, $subject, $message, $from);?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -