hi,
i am unable to send emails whena new user is added or for tokens. i currently have hosting plan that does not offer smtp. can i use phpmailer or sendmail mailer to send these emails? if so, what values should the following have?
$emailmethod = "sendmail"; // The following values can be used:
// mail - use internal PHP Mailer
// sendmail - use Sendmail Mailer
// smtp - use SMTP relaying
$emailsmtphost = "localhost"; // Sets the SMTP host. All hosts must be separated by a semicolon.
// You can also specify a different port for each host by using
// this format: [hostname:port] (e.g. "smtp1.example.com:25;smtp2.example.com"

.
$emailsmtpuser = ""; // SMTP authorisation username - only set this if your server requires authorization - if you set it you HAVE to set a password too
$emailsmtppassword = ""; // SMTP authorisation password - empty password is not allowed
$emailsmtpssl = 0; // Set this to 1 to use SSL for SMTP connection
$maxemails = 50; // The maximum number of emails to send in one go (this is to prevent your mail server or script from timeouting when sending mass mail)