Showing posts with label Web. Show all posts
Showing posts with label Web. Show all posts

Monday, November 26, 2012

Modx send email

We were having problem on our website to send email to our staffs.  The web content is servered by Modx and design and developed by a design house.

After looking into the code, it's found that the default email server was not able to send email to our gmail domain email address.  To server the problem, we use another server on sendgrid.


$mail = new PHPMailer();
$mail->From = 'xxx@xxx-xxx.com';
$mail->FromName = 'some name';
$mail->IsSMTP();
$mail->Host = "www.sendgrid.net";
$mail->Port = 3535;
$mail->SMTPDebug = 1;
$mail->SMTPAuth = true;
...

Friday, October 12, 2012

OpenStack - open source software for building private and public clouds

http://www.openstack.org/

OpenStack OpenStack is a global collaboration of developers and cloud computing technologists producing the ubiquitous open source cloud computing platform for public and private clouds. The project aims to deliver solutions for all types of clouds by being simple to implement, massively scalable, and feature rich. The technology consists of a series of interrelated projects delivering various components for a cloud infrastructure solution.

Sunday, September 9, 2012