All Projects → dcblogdev → Loginregister

dcblogdev / Loginregister

Licence: mit
Login and Registration system

Login Register

These files acompany the tutorial: Login and Registration system with PHP

send emails locally

For anyone who is struggling with emails locally I highly recommend using https://mailtrap.io this is a great service to catch emails when working locally.

To set it up open classes/phpmailer/mail.php and enter the SMTP details:

Ensure you enter the username and password provided from mailtrap.

public $Host = 'smtp.mailtrap.io';
public $Mailer = 'smtp';
public $SMTPAuth = true;
public $Username = '';
public $Password = '';
//public $SMTPSecure = 'tls';
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].