Amazon Kindle (e-book reader with eink) is launced

Writen on year 2007 in Miscellaneous

Bluetooth Core Specification Version 2.1 (full backward compatible with 1.1) was adopted by the Bluetooth SIG

Writen on year 2007 in Miscellaneous

php mail test

Writen on year 2007 in Scripts

<? if (! empty($_POST['email']) ) { $message=$_POST["message"]; $email=$_POST["email"]; $fname=$_POST["fname"]; $sname=$_POST["sname"]; $fromadd=$_POST["fromadd"]; $content = “You have a New Message From {$fname} {$sname}: {$message}”; ini_set(“sendmail_from” , $fromadd); $mailSent = false; $mailSent = mail( $email, “Website Test Contact Form”, $content, “From: $fromadd”, “-f”.$fromadd ); if ($mailSent) { echo ‘Mail sent’; } else { echo ‘Problem’; } } else [...]