Swift Mailer Plugin WordPress, Download, Install

Swift Mailer Plugin WordPress

The Swift Mailer library and nothing more. Created for developers.

Swift Mailer Download Now

Download Now

(If the link does not work)↓

Originals Link WordPress.org

https://wordpress.org/plugins/swift-mailer/

How to Install Swift Mailer Plugin, Manually

Upload and activate. You can then use the Swift Mailer library within your code – swift_required.php is automatically included.

Sample connect and send code (full documentation available at: http://swiftmailer.org/docs/sending.html )

// Create the Transport $transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25)   ->setUsername('your username')   ->setPassword('your password')   ;  // Create the Mailer using your created Transport $mailer = Swift_Mailer::newInstance($transport);  // Create a message $message = Swift_Message::newInstance('Wonderful Subject')   ->setFrom(array('[email protected]' => 'John Doe'))   ->setTo(array('[email protected]', '[email protected]' => 'A name'))   ->setBody('Here is the message itself')   ;  // Send the message $result = $mailer->send($message);

Video

Screenshots

Swift Mailer Plugin WordPress

Plugin Not Working?

If any errors or problems with the plug-in then write comments.

Add a Comment

Your email address will not be published. Required fields are marked *