March 8th, 2007
The Apple iPod is resting on in laurels while other companies are taking great strides at providing features which give consumers more flexibility. Take, for example, the SanDisk Sansa e200 series media players. These devices are about the same dimensions (maybe slightly larger) as an iPod Nano but provide a plethora of features for a great price. Read the rest of this entry »
Posted in Reviews, Technology | No Comments »
March 4th, 2007
Here is some example code for sending HTML formatted e-mail via the PHP mail function:
$from="YourFromAddress@yourdomain.com";
$to="SendThisTo@TheirDomain.com";
$body="<html><body>Add your HTML code here</body></html>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $from <$from>\r\n";
$headers .= "Reply-To: $from <$from>\r\n";
$headers .= "X-Mailer: PHP\r\n";
mail($to,"Put your e-mail subject here!", $body, $headers);
Posted in PHP, Programming | No Comments »