All Entries Tagged With: "email"
Probelm with sending email via smtp to google app
I am facing some problem with sending email to google app via smtp. The problem is that when i try to send email to say yourname@yourdomain.com hosted in google app. Then mail not delivering to that particular emailid. But all others in the same domain will get the email. i Don’t know what is the [...]
What is Web Forgery or phishing Attack ?
Web Forgery (also known as “Phishing”) is a form of identity theft that occurs when a malicious Web site impersonates a legitimate one in order to trick you into giving up sensitive information such as passwords, account details, or credit card numbers. Phishing attacks usually come from email messages that attempt to lure the recipient [...]
Simple Mail From PHP
Simple Email Program <?php $to = ‘nobody@example.com’; $subject = ‘the subject’; $message = ‘hello’; $headers = ‘From: webmaster@example.com’ . “\r\n” . ‘Reply-To: webmaster@example.com’ . “\r\n” . ‘X-Mailer: PHP/’ . phpversion(); mail($to, $subject, $message, $headers); ?> Email With MIME Content <?php // multiple recipients $to = ‘aidan@example.com’ . ‘, ‘; // note the comma $to .= [...]
How to send Emails From PHP using PHPMailer
PHP email transport class featuring file attachments, SMTP servers, CCs, BCCs, HTML messages, word wrap, and more. Sends email via sendmail, PHP mail(), QMail, or with SMTP. phpmailer_v21download or download it from sourceforge.net http://sourceforge.net/project/showfiles.php?group_id=26031 put these files in you website root and run the below code to send E mails. 1. class.phpmailer.php 2. class.pop3.php 3. [...]
How to validate Email Address Using Javascript
<script language=”javascript” type=”text/javascript”> function checkemail(id) { var email = document.getElementById(id); var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (!filter.test(email.value)) { alert(‘Please provide a valid email address’); email.focus; return false; } return true; } </script>



