Skip to content

Instantly share code, notes, and snippets.

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 itswadesh/f6c2e3e78483898627a0c3934b9de2a0 to your computer and use it in GitHub Desktop.
Save itswadesh/f6c2e3e78483898627a0c3934b9de2a0 to your computer and use it in GitHub Desktop.
<?php
define('DATABASE_HOST', "localhost");
define('DATABASE_NAME', "demos");
define('DATABASE_USERNAME', "root");
define('DATABASE_PASSWORD', "root");
define('ATTACHED_FILENAME', "books.pdf");
define('SENDGRID_USERNAME', "YOUR_SENDGRID_USERNAME");
define('SENDGRID_PASSWORD', "YOUR_SENDGRID_PASSWORD");
define('FROM', "demo@angularcode.com");
define('TO', "support@codenx.com");
define('SUBJECT', "ShopNx - The Single Page eCommerce Website");
define('CONTENT', "
<h1>Experience faster shopping with ShopNx</h1>
<ul>
<li>Responsive Design</li>
<li>Higher Scalability</li>
<li>Ergonomically Designed</li>
</ul>");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment