Skip to content

Instantly share code, notes, and snippets.

@robsbots
Created April 27, 2014 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robsbots/11345751 to your computer and use it in GitHub Desktop.
Save robsbots/11345751 to your computer and use it in GitHub Desktop.
<?php
// File name:- server_config.php
// Configuration settings for Mail server
define('SMTP_SERVER', 'smtp.gmail.com');
define('SMTP_PORT', 587);
define('SMTP_USERNAME', 'your_gmail_user_name');
define('SMTP_PASSWORD', 'your_gmail_password');
define('SMTP_AUTH', true);
define('SMTP_AUTH_TYPE', 'tls');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment