Simple SMTP by Maileroo

Beschrijving

Worstel je met WordPress die e-mails niet goed verstuurt? Simple SMTP van Maileroo is er om dat op te lossen! Deze plugin is ontworpen om ervoor te zorgen dat je WordPress e-mails betrouwbaar en efficiënt worden verzonden, met behulp van je favoriete SMTP dienst.

We streven ernaar je e-mailaflevering te vereenvoudigen en te beveiligen, zodat je berichten altijd in de inbox terechtkomen. Simple SMTP by Maileroo maakt je e-mail betrouwbaar door je te helpen over te schakelen naar een goede SMTP Relay zoals Maileroo, Mailgun, SendGrid, enz. Simple SMTP van Maileroo is gratis te gebruiken en heeft alles wat je nodig hebt om je e-mails via WordPress te verzenden!

SMTP uitgelegd

SMTP, of Simple Mail Transfer Protocol, is de industriestandaard voor het verzenden van e-mails over het internet. Het speelt een cruciale rol in het afleverproces van e-mail en is het protocol dat de overdracht van e-mails van de ene server naar de andere regelt. Inzicht in SMTP is essentieel voor iedereen die e-mail beheert, vooral in een WordPress omgeving. Als je geen goede SMTP relay dienst gebruikt, kunnen je e-mails naar spam gaan, waardoor de effectiviteit en het bereik in gevaar komen.

HTTP API integratie

Met de nieuwste update biedt Simple SMTP van Maileroo nu HTTP API integratie met Maileroo. Met deze functie kun je e-mails verzenden via de Maileroo API, zonder dat je SMTP referenties nodig hebt. Dit is een geweldige optie voor gebruikers wiens hostingproviders SMTP poorten blokkeren of voor degenen die liever de Maileroo API gebruiken voor het bezorgen van e-mails.

SMTP relay aanbieders

Hier zijn enkele van de populaire SMTP Relay providers, die elk unieke functies en voordelen bieden voor verschillende e-mail afleverbehoeften:

  1. Maileroo
  2. Mailgun
  3. SendGrid
  4. Amazon SES
  5. SMTP.com
  6. Postmark

Schermafbeeldingen

Installatie

  1. Installeer de Simple SMTP by Maileroo plugin via de WordPress.org plugin repository of door de bestanden te uploaden naar je server.
  2. Activeer de plugin in je WordPress beheerscherm.
  3. Navigeer naar de Instellingen pagina van de Simple SMTP plugin.
  4. Vul de SMTP instellingen in voor je dienst. Als je geen SMTP provider hebt, kijk dan op Maileroo voor een gratis en betrouwbare SMTP relay dienst.
  5. Wijzigingen opslaan en je SMTP referenties testen.
  6. Heb je meer hulp nodig? Laat het ons weten via onze contact pagina.

FAQ

Kan Simple SMTP van Maileroo gebruikt worden om e-mails te verzenden via Gmail, Outlook.com, Office 365, Yahoo of andere SMTP diensten?

Absoluut! Simple SMTP van Maileroo is ontworpen om compatibel te zijn met een groot aantal e-maildiensten, waaronder Maileroo, Gmail, Outlook.com, Office 365, Yahoo en meer.

Wat moet ik doen als ik ondersteuning nodig heb of een probleem tegenkom?

We zijn hier om te helpen! Als je hulp nodig hebt met de plugin instelling, laat het ons weten!

Bezoek onze contactpagina voor meer informatie.

Zijn er plannen om nieuwe functies toe te voegen aan Simple SMTP by Maileroo?

We staan altijd open voor suggesties! Als er een functie is die je graag zou willen zien in Simple SMTP by Maileroo, laat het ons dan weten. Hoewel we niet kunnen beloven elk aanvraag uit te voeren, nemen we alle haalbare en zinvolle suggesties om onze plugin te verbeteren serieus.

Is it possible to add custom email headers (tags) to an email message?

For the SMTP method of the plugin, you can easily add custom mail headers. In the example below, a tag header with the value of the “From Email” is added:

add_action('ssbm_add_custom_header', function($phpmailer) {
  $phpmailer->addCustomHeader('X-Tag-from', $phpmailer->From);
});

A similar filter hook is available for the Maileroo API method. The following example adds the same tag header to the email message.

add_filter('ssbm_add_tags_api_method', function($payload) {
  if (isset($payload['from']['address'])) {
    $payload['tags'] = array('from' => $payload['from']['address']);
  }
  return $payload;
});

Beoordelingen

28 oktober 2025 1 reactie
This plugin works fantastically with Maileroo API or SMTP. I use it with Formidable Forms on several sites and it not only works perfectly, when it was first released, the developers kept improving it quickly and responded immediately to any questions I had. Highly recommended!
17 oktober 2025 1 reactie
I’m surprised this SMTP plugin hasn’t had more reviews or usage to date because I found it really easy to set up and use with its own Maileroo SMTP service. I’ve been looking for an easy SMTP setup for my client websites for them to receive form submission notifications. I want to use an API rather than username and password for better security and reliability. My clients have various email providers so I want something I can use for all of them. I like SMTP2Go but it is limited to 5 sending domains for its free SMTP service. I found Fluent SMTP very reliable to connect to other SMTP services but it has a limited number of services that it can connect to using API. I recommend this and Maileroo to anyone looking for a similar solution to reliably send form submissions from their sites.
18 december 2024
I’m using the Maileroo API option and emails are delivered so fast!Excellent SMTP Relay service and a nice plugin.
29 november 2024
Enter API key/SMTP settings, set senders details and test connection.That’s really all the plugin need to do and this does it.
Lees alle 4 beoordelingen

Bijdragers & ontwikkelaars

“Simple SMTP by Maileroo” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

“Simple SMTP by Maileroo” is vertaald in 1 locale. Dank voor de vertalers voor hun bijdragen.

Vertaal “Simple SMTP by Maileroo” in je eigen taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

= v1.1.5

  • Improvement: I’ve added additional attachment validations to the Maileroo API mail function. This was necessary to prevent errors in certain situations.
  • Other: I’ve added two useful links to the plugin on the plugin list page.

= v1.1.4

  • Improvement: Cc, Bcc and From: headers are now also recognized when spelled in capital or lower case.

v1.1.3.1

  • Bug Fix: Fixed a problem with misspelled reply-to headers.

= v1.1.3

  • Improvement: Support for “Cc:” and “Bcc:” headers was still missing when calling the Maileroo Email API v2. This is now possible for both types of headers.

v1.1.2

  • Bug Fix: Fixed a problem with an empty reply-to value from Elementor forms.

v1.1.1

  • Bug Fix: Fixed a problem with multiple email recipients.

v1.1.0

  • Improvement: Updated the API overide function to support the new Maileroo Email API v2.
    UPDATE your custom filter hooks if you add tags to your emails (Check the FAQ for the updated example)
  • Bug Fix: In this version the Reply-To header finally works, sorry for the additional updates yesterday.

v1.0.10.1

v1.0.10

  • Bug Fix: Fixed Reply-to header for the API email mode.

v1.0.9

  • Improvement: It is now possible to add tags to an email message. See the FAQ section for the code examples.
  • Improvement: The email “from:” header is no longer overwritten when it contains its own value.

v1.0.8

  • Bugfix: de plugin header is aangepast om lokalisatie te ondersteunen.

v1.0.7

  • Verbetering: alle code voorbereid voor lokalisatie.

v1.0.6

  • Bugfix: in sommige situaties worden de mail headers niet goed gelezen voor de API versie

v1.0.5

  • (kleine) bug verholpen

v1.0.4

De volgende bijdragen zijn gedaan door Olaf Lederer.

  • Verbetering: het filter ssbm_add_template_data toegevoegd waarmee ontwikkelaars van derden templates kunnen gebruiken met de plugin.

v1.0.3

De volgende bijdragen zijn gedaan door Olaf Lederer.

  • Bugfix: de plugin laadt de stylesheet niet langer onnodig.
  • Verbetering: de plugin voegt automatisch regeleinden toe en converteert platte e-mails die door WordPress worden geproduceerd.

v1.0.2

  • Bugfixes en verbeteringen

v1.0.1

  • HTTP API integratie met Maileroo toegevoegd

v1.0.0

  • Initiële release