I think the plugin was removed for whatever reason and the guys with the webriti plugin are the closest match to the old one so I gets shown in searches…
And another one bytes the dust…
I’ve got an alternative solution if you want you can stop using a plugin and configure stuff in your functions.php
Here is a link to where I saved this so I find it again when needed (not my own invention of course, I found it while googling) => https://gist.github.com/ovizii/11079259
add_action('phpmailer_init','send_smtp_email');
function send_smtp_email( $phpmailer )
{
// Define that we are sending with SMTP
$phpmailer->isSMTP();
// The hostname of the mail server
$phpmailer->Host = "smtp.example.com";
// Use SMTP authentication (true|false)
$phpmailer->SMTPAuth = true;
// SMTP port number - likely to be 25, 465 or 587
$phpmailer->Port = "587";
// Username to use for SMTP authentication
$phpmailer->Username = "yourusername";
// Password to use for SMTP authentication
$phpmailer->Password = "yourpassword";
// The encryption system to use - ssl (deprecated) or tls
$phpmailer->SMTPSecure = "tls";
$phpmailer->From = "your-email-address";
$phpmailer->FromName = "Your Name";
}