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;
...
Showing posts with label Web. Show all posts
Showing posts with label Web. Show all posts
Monday, November 26, 2012
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.
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
Log in with open accounts
Google: https://developers.google.com/accounts/docs/OpenID
Facebook: http://developers.facebook.com/docs/guides/web/
Twitter: https://dev.twitter.com/docs/auth/sign-twitter
OAuth - Open standard for authorization
Ruby Gem - https://github.com/intridea/omniauth
Facebook: http://developers.facebook.com/docs/guides/web/
Twitter: https://dev.twitter.com/docs/auth/sign-twitter
OAuth - Open standard for authorization
Ruby Gem - https://github.com/intridea/omniauth
Friday, August 17, 2012
Thursday, August 16, 2012
Subscribe to:
Posts (Atom)