Home  ›  Tutorials  ›  How to configure mail to work with PHP Mail

How to configure mail to work with PHP Mail

If Your mail system is not working in Groupon Clone

Please follow below steps.

Step1.

Goto include/library/PHPMailer.class.php

Step2.

Find following code and edit it according to requirements

public $From              = 'root@localhost';

/**
* Sets the From name of the message.
* @var string
*/
public $FromName          = 'Root User';

/**
* Sets the Sender email (Return-Path) of the message.  If not empty,
* will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
* @var string
*/
public $Sender            = '';

That’s it


Help us improve the wiki Send Your Comments