Pepipost

By : unknown

Pepipost is built on the philosophy to encourage good senders and to keep the email eco-system clean. 85% of today's email is Spam and we don't want to add up to that. We have carried up that philosophy into the pricing model where we don't charge for the emails which are being opened by the customers. Emails that are clicked, opened or engaged with will always be free. Industry stats says 35-40% is the average open rate, hence that much of email volumes can be free. There is no limits, More your customer engagement is lesser will be your marketing spends. Entire pricing model is in your hands.

We care for each and every emails, and this is how we differentiate from our competitors.

The Pepipost plugin uses SMTP integration to send outgoing emails from your WordPress installation. It replaces the wp_mail function included with WordPress.

First, you need to have PHP-curl extension enabled.

To have the Pepipost plugin running after you have activated it, go to the plugin's settings page and set the Pepipost credentials, and how your email will be sent - either through SMTP or API.

How to use wp_mail() function:

We amended wp_mail() function so all email sends from WordPress should go through Pepipost.

You can send emails using the following function: wp_mail($to, $subject, $message, $headers = '', $attachments = array())

Where:

  • $to - Array or comma-separated list of email addresses to send message.
  • $subject - Email subject
  • $message - Message contents
  • $headers - Array or "\n" separated list of additional headers. Optional.
  • $attachments - Array or "\n"/"," separated list of files to attach. Optional.

The wp_mail function is sending text emails as default. If you want to send an email with HTML content you have to set the content type to 'text/html' running add_filter('wp_mail_content_type', 'set_html_content_type'); function before to wp_mail() one.

After wp_mail function you need to run the remove_filter('wp_mail_content_type', 'set_html_content_type'); to remove the 'text/html' filter to avoid conflicts --http://core.trac.wordpress.org/ticket/23578

Example about how to send an HTML email using different headers:

$subject = 'test plugin';
$message = 'testing WordPress plugin';
$to = 'address1@pepipost.com, Address2 <address2@pepipost.com@>, address3@pepipost.com';
or
$to = array('address1@pepipost.com', 'Address2 <address2@pepipost.com>', 'address3@pepipost.com');
 
$headers = array();
$headers[] = 'From: Me Myself <me@example.net>';
$headers[] = 'Cc: address4@pepipost.com';
$headers[] = 'Bcc: address5@pepipost.com';
 
$attachments = array('/tmp/img1.jpg', '/tmp/img2.jpg');
 
add_filter('wp_mail_content_type', 'set_html_content_type');
$mail = wp_mail($to, $subject, $message, $headers, $attachments);
 
remove_filter('wp_mail_content_type', 'set_html_content_type');

SendGrid

SendGrid's cloud-based email infrastructure relieves businesses of the cost and complexity of maintaining custom email systems. SendGrid provides reliable delivery, scalability and real-time analytics along with flexible APIs that make custom integration a breeze. The SendGrid plugin uses SMTP or A.........

Similar: 95%

Sakshamapp ES email system for transaction email

From wordpress we need to send many transactional emails like User registration. Forget password User registeration notification and yes when we use advance plugins it send all notification by email to admin In woocommerce we need to send email to buyers customers for their orders And order stat.........

Similar: 86%

SparkPost

The SparkPost email delivery service offers best in class deliverability to ensure your mail hits the inbox, live analytics to review, track and optimize your email activities, as well as highest performance when you need it most: always. When the SparkPost plugin is enabled, all outgoing email fro.........

Similar: 80%

wpMandrill

This plugin uses Mandrill API to send outgoing emails, with or without attachments, from your WordPress installation. It replaces the wp_mail function included with WordPress. Emails are tracked and automatically tagged for statistics within the Mandrill Dashboard. You can also add general tags to .........

Similar: 70%

Alternative Mailer - Swift Mailer

This package includes Swift Mailer for PHP 4 and PHP 5 versions. It enhances the option set over Shiftthis SMTP plugin and allows for Sendmail and PHP native mail() solutions with SMTP. So everything you can do with Shiftthis, you can do with this plugin plus more. This plugin does not automaticall.........

Similar: 67%

WP SES

WP-SES redirects All outgoing WordPress emails through Amazon Simple Email Service (SES) instead of local wp_mail function. This ensures high email delivrability, email trafic statistics and a powerful managed infrastructure. This plugin is functionnal and I use it on several websites. WPMU feature.........

Similar: 34%

Xmail - The Right Way

All webmasters experience the problem of their emails landing in their users spam folders, including our own! So we decided to develop a simple solution to fix this wide-spread annoyance. After a long development period, we have produced an effective method of sending emails which complies in ful.........

Similar: 34%

Configure SMTP

Configure SMTP mailing in WordPress, including support for sending e-mail via SSL/TLS (such as GMail). This plugin is the renamed, rewritten, and updated version of the wpPHPMailer plugin. Use this plugin to customize the SMTP mailing system used by default by WordPress to handle outgoing e-mails..........

Similar: 27%

Easy WP SMTP

Easy WP SMTP allows you to configure and send all outgoing emails via a SMTP server. This will prevent your emails from going into the junk/spam folder of the recipients....

Similar: 24%

Easy SMTP Mail

Webriti SMTP Mail can help us to send emails via SMTP instead of the PHP mail() function. It adds a settings page to "Dashboard"->"Settings"->"Webriti SMTP Email" where you can configure the email settings. This plugin reconfigure's the wp_mail() function to send SMTP Mails. But you have to m.........

Similar: 24%