Blastex Smtp Client With SSL/TLS Wordpress Plugin - Rating, Reviews, Demo & Download
Plugin Description
Blastex SSL Smtp email client for wordpress.
Send html emails with attachments without smtp server from your blog.
You can send email from standard wp_mail function.
Blastex gets recipient mx hostname from dns server and send email.
Send an email messages to gmail.com yahoo.com, outlook.com, ovh.com, hotmail.com.
About blastex:
* Php Ssl Smtp email client plugin for WordPress
* Send emails without local smtp server from wordpress blog
* Send email form admin panel email form
* Languages: English, Polish
How to use
< ?php
!!! Enable first in php.ini config file socket extension. Read more in plugin admin panel after activation !!!
$to = 'hello@emal.com, hello@boom.com';
$subject 'Hello from email client';
$html = 'Hello message from smtp !!!
Message from wordpress plugin!
';
// Install and activate plugin and send emails
$ok = wp_mail($to, $subject, $html);
// Show error
echo get_option('blastex_error');
?>