RSS Feed
Via Email

Chat with Me
Dec 03

WatchUOnline.com - Watch & Download YouTube Videos Easily!

Announcement  2 Comments

We are proud to present our new website Watch U Online .com where you can watch & download YouTube videos easily. On this website you can browse, watch and download all the video files from YouTube and save them in your computer.

Why browse WatchUOnline.com? Why not directly go to YouTube?

Because YouTube does not provide you the facility to download the video files (*.flv) from their website. Only on our website you can download the video files (*.flv) and save it in your computer and watch the video whenever you want without having to connect to internet. You may also need to download FLV Player in order to watch the video.

Hope you like our new website ;)

Nov 29

Bye Bye PHP Mail()

Email, PHP, Web Scripting  No Comments

Are you still using PHP mail() function to send email on your webpage? Guess it’s time to say bye bye :D

Why? Because mail() function will use the webserver to send email instead of a real mail server. However, we recently found out that the recipient mail server will check the sender IP and when it notices that the sender IP is not an email server, then it will block the message and the messages will never get through to recipient mailbox. This problem seems to be applicable to some email server (recipients’) such as Yahoo, AOL and other companies.

How to solve this problem? Easy, don’t use webserver to send email, but use a real email server with SMTP. If you’re using PHP, simply download phpmailer class and send email using SMTP.

Below is the code sample that you need to write on your webpage:

require(”class.phpmailer.php”);

$mail = new PHPMailer();

$mail->IsSMTP(); // send via SMTP
$mail->Host = “mail.yourdomain.com”; // SMTP servers
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = “emailer@yourdomain.com”; // SMTP username
$mail->Password = “password”; // SMTP password

$mail->From = “from@yourdomain.com”;
$mail->FromName = “Sender’s name”;
$mail->AddAddress(”to@otherdomain.com”);

$mail->Subject = “subject here”;
$mail->Body = “message body here”;

if(!$mail->Send())
{
echo “Mailer Error: ” . $mail->ErrorInfo;
exit;
}

echo “Message has been sent successfully.”;

That’s it ;) You can even add more functionality such as HTML email, attachments, send to CC & BCC with simply add more properties to the mailer class and without having to worry about your mail got bounced back by some mail servers out there. Please refer to PHPMailer’s documentation for more info :)

And for those of you who are using wordpress then WP_Mail SMTP is the best plugin you need.

Nov 27

Cyber Coral was Featured on Newspaper!

News  1 Comment

We are so happy to let you know that Cyber Coral was featured on Batam Pos, the biggest newspaper in Batam. The article was published full color on page 31, on Sunday - 23 September 2007 edition.

You can read copy of the articles below, or click the image to enlarge.

However, we would like to clarify 1 thing on the article that Cyber Coral is no longer our part-time project. It has become our top priority since we’re now depending solely on Cyber Coral and other websites under the Cyber Coral Network.

Cyber Coral Featured on Batam Pos
btw, that’s not our picture :p

Read the rest of this entry »

« Previous entries · Next entries »