Sari la conținut
  • Autentificare
  • Înregistrare
WordPress.org

În Română

  • Teme
  • Module
  • Știri
  • Suport
  • Despre
  • Evenimente
  • Localizare
  • Dialog
  • Obține WordPress
Obține WordPress

Module

  • Favoritele mele
  • Testare beta
  • Dezvoltatori
Descarcă

Send Emails with Mandrill

De Miller Media ( Matt Miller )
  • Detalii
  • Recenzii
  • Instalare
  • Dezvoltare
Suport

Descriere

Did you find this plugin helpful? Please consider leaving a 5-star review.

Note: This is a forked version of the now unsupported wpMandrill plugin. The notes below are copied over from the original plugin and will be updated as relevant updates become available. Please help by contributing to the GitHub repository Send Emails With Mandrill on GitHub

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 every email sent, as well as particular tags based on selected emails defined by your requirements.

You can also use your own templates that have been added to your MailChimp account and shared with your Mandrill account.

There are a few levels of integrations between your WordPress installation and this plugin:

  1. The simplest option: Install it, configure it, and Send Emails with Mandrill will start sending your emails through Mandrill.
  2. If you need to fine tune certain emails, you can change any email by creating a filter for the mandrill_payload hook.
  3. For further customization, we’ve exposed a function that allows you to send emails from within your plugins, instead of the regular wp_mail function: wpMandrill::mail

Enable the connection by entering a valid API key in the settings page or adding the line define('SEWM_API_KEY', '{YOUR_API_KEY}') your site’s wp-config.php file.

Spanish translation available.

Request

If you find that a part of this plugin isn’t working, please don’t simply click the WordPress „It’s broken” button. Let us know what’s broken in its support forum so we can make it better. Our mind-reading device still needs some tweaking.

Localizations

Send Emails with Mandrill is currently localized in the following languages:

  • Spanish (es_ES)

Known Issues

  • Daily statistics will show data for the first 20 senders (emails) registered.
  • Daily statistics will show data for the first 40 tags registered.

If your account has more than 20 senders registered or more than 40 tags used, the detailed daily statisticas might show incompleted data.

Capturi ecran

  • Settings screen
  • Statistics
  • Dashboard widget
  • Dashboard widget Settings

Instalare

  1. Upload Send Emails with Mandrill to the /wp-content/plugins/ directory
  2. Activate the plugin through the Plugins menu in WordPress
  3. Configure plugin in Settings > Mandrill

Întrebări frecvente

Why do I need a Mandrill API key?

In order to use this plugin, you have to provide one of your Mandrill API keys. That’s currently the only way we can get access to your Mandrill account.

Do I need a MailChimp account?

Yes. If you aren’t currently on a MailChimp Monthly Plan, you’ll first need to upgrade or switch to a Monthly Plan. Once you have upgraded you can follow the steps here to add Mandrill to your account.

Are all emails routed through Mandrill?

Yes. We try to send every single email sent through your WordPress installation. We also try to process your headers and attachments.

If the sending fails for any reason, the plugin will try to send it again using the WordPress wp_mail function.

What if I need to send some of my emails using the native wp_mail() function?

Use the mandrill_payload filter and add a new parameter called ‘force_native’ to the $message variable, and set it to true:

$message[‘force_native’] = true;

My emails are broken and show weird CSS code

In version 1.09, we added a setting that allows you to tell the plugin if you want to replace your line feeds by
. Try playing with that switch.

If it works for certain emails but doesn’t work for others, you might want to modify this setting using the mandrill_nl2br filter. For example, if you don’t want to use this filter for the „forgot password” emails, add something like this to your theme’s functions.php file:

function my_function($nl2br, $message) {
if ( in_array(‘wp_retrieve_password’, $message[‘tags’][‘automatic’]) ) {
$nl2br = false;
}
return $nl2br;
}
add_filter(‘mandrill_nl2br’, ‘my_function’);

Is there any way to check what’s going on?

If we couldn’t send your email through Mandrill, we’ll try to leave the Mandrill response in your server’s log so that’s your first stop.

Additionally, if you set the WP_DEBUG constant (defined in your wp-config.php file) to true, you’ll see some messages added by the plugin in key parts of the process.

I am getting an Invalid API Key message and I’m sure my API is valid!

Please verify the following:

  1. That your API key is active (this can be viewed on the SMTP & API Credentials page in your Mandrill account);
  2. That your web server has either cURL installed or is able to use fsock*() functions (if you don’t know what this means, you may want to check with your hosting provider for more details);
  3. That the domain name you’re using above is listed in the Sending Domains for your Mandrill account.

Verificări

Works like the old mandrill plugin

carlcs 30 aprilie 2020 1 răspuns
And it's still supported by the developers unlike the old one

Thanks, can I help ?

RT_PDX 28 aprilie 2020 1 răspuns
Great that this plugin got a second life! It beats tons of other SMTP plugins trying to support mandrill. It needs a few updates to be fully PHP7.4 compatible and it would be great to have a few extra options (thing return_path_domain etc). On that note: I can help if that would in this great effort!?

Thank you for supporting the plugin

srumery 2 februarie 2020 1 răspuns
Thank you for taking the initiative to fork the unsupported plugin and get it working with modern PHP.

Thank you for taking over the Unsupported Mandrill App

zakkates 14 ianuarie 2020 1 răspuns
The old unsupported Mandrill app had begun causing errors on our website. It caused issues with our WooCommerce installation. Luckily we found this plugin just in time to fix all of our problems. Thank you! Thank you!

Really good. Thank you.

anthonywnz 12 decembrie 2019 1 răspuns
Thanks for maintaining this.

Good plugin. Good Support

dear.leader 28 septembrie 2018
I haven't run into any problems and this updated version of the Mandrill plugin solved an issue I was experiencing with the original Mandrill plugin. Plus I know that if an issue develops, I can contribute a fix or the plugin authors will have already fixed it. What's not to like?
Citește toate cele 8 recenzii

Contributori și dezvoltatori

„Send Emails with Mandrill” este un software open-source. La acest modul au contribuit următoarele persoane.

Contributori
  • Matt Miller
  • mikemm01
  • MC_Will
  • MC_Amanda
  • Cornel Raiu
  • crstauf
  • bizmatebiz
  • andrewhilson
  • anthonywnz
  • srumery
  • RT_PDX
  • ilanio
  • Sander Teirlynck

Tradu „Send Emails with Mandrill” în limba ta.

Te interesează dezvoltarea?

Răsfoiește codul, vezi depozitarul SVN, sau abonează-te la jurnalul de dezvoltare prin RSS.

Istoric modificări

1.3.1

  • Check for error messages parameters before processing (was throwing an error)

1.3

  • Added setting to turn off Dashboard Widget
  • Added ability to manually fetch new data from Reports screen
  • Added ability to define API key as SEWM_API_KEY in wp-config.php file
  • Minor error handling adjustments

1.2.13

  • Setting to disable
    setting for WooCommerce emails due to layout issues from recent WooCommerce updates

1.2.12

  • Updates to deprecated jQuery functions

1.2.9

  • Removed deprecated contextual_help() function and added add_help_tab()

1.2.8

  • Add wpmandrill_enable_reports and wpmandrill_enable_widgets filters to programmatically disable the reports dashboard and widget if desired.

1.2.7

  • Removed code added for previous Mandrill outage

1.2.6

  • Updated messaging on how to handle the upcoming Mandrill outage
  • Bug fix for memcache overload when loading Mandrill reports page on high traffic sites

1.2.5

  • Updated plugin screenshots for WordPress repository
  • Added support/setting for Mandrill subaccount
  • Removed discontinued Mandrill API endpoint support (URL tracking)

1.2.4

  • Removed RSS Feeds due to WordPress core bugs (SimplePie library)
  • CSS adjustments
  • Fixed false negatives when used in conjunction with Contact Form 7 and other mail sending programs

1.2.3

  • Fixed WooCommerce checkout issue (class scope bug)

1.2.2

  • More detailed error logging for failed e-mails
  • Added email formatting to include ‘name’

1.2.1

  • PHP warning fix

1.2

  • Added ability to override wp_mail_native function with a WordPress action
  • 404 console fixes
  • Various undefined variable fixes

1.1

  • Added support for PHP 7.2
  • Removed support for PHP < 5.6
  • Added plugin activation compatibility checks

1.0

  • Initial release

Meta

  • Versiune: 1.3.1
  • Ultima actualizare: Acum 3 săptămâni
  • Instalări active: 8.000+
  • Versiune WordPress: 3.0 sau mai recentă
  • Testat până la: 6.1.1
  • Versiune PHP: 5.6 sau mai recentă
  • Limbă:
    English (US)
  • Etichete:
    emailemail reliabilitymailchimpmandrilltransactional email
  • Vizualizare avansată

Evaluări

Vezi toate
  • 5 stele 8
  • 4 stele 0
  • 3 stele 0
  • 2 stele 0
  • 1 stea 0
Autentifică-te pentru a trimite un modul la verificare.

Contributori

  • Matt Miller
  • mikemm01
  • MC_Will
  • MC_Amanda
  • Cornel Raiu
  • crstauf
  • bizmatebiz
  • andrewhilson
  • anthonywnz
  • srumery
  • RT_PDX
  • ilanio
  • Sander Teirlynck

Suport

Probleme rezolvate în ultimele două luni:

2 din 2

Vezi forumul pentru suport

  • Despre
  • Știri
  • Găzduire
  • Donează
  • Cadouri
  • Documentație
  • Dezvoltatori
  • Implică-te
  • Învață
  • Prezentare
  • Module
  • Teme
  • Modele
  • WordCamp
  • WordPress.TV
  • BuddyPress
  • bbPress
  • WordPress.com
  • Matt
  • Confidențialitate
  • Public Code
WordPress.org
WordPress.org

În Română

  • Vizitează pagina noastră Facebook
  • Vizitează contul nostru Twitter
  • Vizitează-ne pe Instagram
  • Vizitează-ne pe LinkedIn
Codul este poezie.