SMTP mail configuration

Hi Community,

I'm trying to get UNA to work with Amazon SES which is an smtp email service. 

I know my host, username, password and port settings. 

Just trying to find out where to put them into PhpMailer so they're activated for the website. 

Php mailer offers the following example config in it's readme:

try {

    //Server settings

 //   $mail->SMTPDebug = 2;                                 // Enable verbose debug output

    $mail->isSMTP();                                      // Set mailer to use SMTP

    $mail->Host = '';  // Specify main and backup SMTP servers

    $mail->SMTPAuth = true;                               // Enable SMTP authentication

    $mail->Username = '';                 // SMTP username

    $mail->Password = '';                           // SMTP password

    $mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted

    $mail->Port = 587;                                    // TCP port to connect to

}

Any ideas where to copy/paste this info into UNA? 

  • 1461
  • More
Replies (2)
    Login or Join to comment.