Monthly Archives: December 2010

HTC Legend 2.2 Update file

http://fotadl.htc.com/OTA_Legend_Froyo_S_HTC_WWE_3.15.405.3-2.05.405.2_release_160357lpbd4myxuoe8m8jr.zip

Posted in Uncategorized | Tagged | Leave a comment

How to Send Email from a PHP Script Using SMTP Authentication

Install pear:mail, pear:net_smtp code: require_once “Mail.php”; $from = “Sandra Sender “; $to = “Ramona Recipient “; $subject = “Hi!”; $body = “Hi,\n\nHow are you?”; $host = “mail.example.com”; $username = “smtp_username”; $password = “smtp_password”; $headers = array (‘From’ => $from, ‘To’ … Continue reading

Posted in php | Tagged | Leave a comment