Plugin Directory

Changeset 3439556


Ignore:
Timestamp:
01/14/2026 01:17:02 PM (2 months ago)
Author:
softaculous
Message:

New Version 1.1.7

Location:
gosmtp/trunk
Files:
2 added
7 edited

Legend:

Unmodified
Added
Removed
  • gosmtp/trunk/css/admin.css

    r3330304 r3439556  
    255255
    256256/* Mailer styles */
    257 .gosmtp-mailer-input{
     257.gosmtp-mailer-input,
     258.gosmtp-notification-input{
    258259display: inline-flex;
    259260align-items:center;
     
    285286}
    286287
    287 .gosmtp-mailer-input .label{
     288.gosmtp-mailer-input .label,
     289.gosmtp-notification-input .label{
    288290display: none;
    289291background: #555;
     
    297299}
    298300
    299 .gosmtp-mailer-input .label::after {
     301.gosmtp-mailer-input .label::after,
     302.gosmtp-notification-input .label::after{
    300303content: "";
    301304position: absolute;
     
    308311}
    309312
    310 .mailer_container{
     313.mailer_container,
     314.gosmtp-pro-email-notification-container{
    311315display: flex;
    312316max-width: 100%;
     
    314318}
    315319
    316 .mailer_label{
     320.mailer_label,
     321.service_label{
    317322width: 100%;
    318323height: 70px;
     
    323328}
    324329
    325 .gosmtp-mailer-input img{
     330.gosmtp-mailer-input img,
     331.gosmtp-notification-input img{
    326332background:white;
    327333padding:18px;
     
    331337}
    332338
    333 .gosmtp-mailer-input:hover label{
     339.gosmtp-mailer-input:hover label,
     340.gosmtp-notification-input:hover label{
    334341display: block;
    335342}
    336343
    337344.gosmtp-mailer-input:not(.pro):hover .mailer_label,
    338 .gosmtp-mailer-input:not(.pro) .mail_active{
     345.gosmtp-mailer-input:not(.pro) .mail_active,
     346.gosmtp-notification-input:not(.pro):hover .service_label,
     347.gosmtp-notification-input:not(.pro) .service_active{
    339348outline: 2px solid #4f53ff !important;
    340349}
    341350
    342 .mailer_check{
     351.mailer_check,
     352.service_check{
    343353visibility: hidden;
    344354position: absolute;
     
    971981}
    972982
    973 .gosmtp-mailer-input.pro .mailer_label::before{
     983.gosmtp-mailer-input.pro .mailer_label::before,
     984.gosmtp-notification-input.pro .service_label::before{
    974985width: 70px;
    975986height: 15px;
     
    988999}
    9891000
    990 .gosmtp-mailer-input.pro .lock_icon{
     1001.gosmtp-mailer-input.pro .lock_icon,
     1002.gosmtp-notification-input.pro .lock_icon{
    9911003display: none;
    9921004}
    9931005
    994 .gosmtp-mailer-input.pro .lock_icon span{
     1006.gosmtp-mailer-input.pro .lock_icon span,
     1007.gosmtp-notification-input.pro .lock_icon span{
    9951008font-size: 25px;
    9961009}
    9971010
    998 .gosmtp-mailer-input.pro .mailer_label:hover .lock_icon{
     1011.gosmtp-mailer-input.pro .mailer_label:hover .lock_icon,
     1012.gosmtp-notification-input.pro .service_label:hover .lock_icon{
    9991013display: flex;
    10001014justify-content: center;
  • gosmtp/trunk/gosmtp.php

    r3396978 r3439556  
    44Plugin URI: https://gosmtp.net
    55Description: Send emails from your WordPress site using your preferred SMTP provider like Gmail, Outlook, AWS, Zoho, SMTP.com, Brevo (formerly Sendinblue), Mailgun, Postmark, Sendgrid, Sparkpost, Sendlayer or any custom SMTP provider.
    6 Version: 1.1.6
     6Version: 1.1.7
    77Author: Softaculous Team
    88Author URI: https://softaculous.com
  • gosmtp/trunk/init.php

    r3396978 r3439556  
    1010
    1111define('GOSMTP_BASE', plugin_basename(GOSMTP_FILE));
    12 define('GOSMTP_VERSION', '1.1.6');
     12define('GOSMTP_VERSION', '1.1.7');
    1313define('GOSMTP_DIR', dirname(GOSMTP_FILE));
    1414define('GOSMTP_SLUG', 'gosmtp');
  • gosmtp/trunk/main/functions.php

    r3396978 r3439556  
    3030        'smtp2go' => [ 'title' => __('SMTP2Go', 'gosmtp'), 'class' => 'GOSMTP\Mailer\SMTP2Go'],
    3131        'maileroo' => [ 'title' => __('Maileroo', 'gosmtp'), 'class' => 'GOSMTP\Mailer\Maileroo'],
     32        'resend' => [ 'title' => __('Resend', 'gosmtp'), 'class' => 'GOSMTP\Mailer\Resend'],
     33        'mailersend' => [ 'title' => __('MailerSend', 'gosmtp'), 'class' => 'GOSMTP\Mailer\MailerSend'],
    3234    );
    3335   
  • gosmtp/trunk/main/mailer/maileroo.php

    r3365833 r3439556  
    66 */
    77
    8 namespace GoSMTP\Mailer;
     8namespace GOSMTP\Mailer;
    99
    1010use GOSMTP\Mailer\Loader;
  • gosmtp/trunk/main/settings.php

    r3396978 r3439556  
    281281        }
    282282    }
    283    
     283
     284    // Save Notification Settings
     285    if(defined('GOSMTP_PRO_VERSION') && isset($_REQUEST['save_notification_settings'])){
     286        do_action('gosmtp_pro_save_notification_settings');
     287    }
     288
    284289    // SMTP Settings
    285290    if(isset($_REQUEST['save_settings'])){
     
    374379        $smtp_options['mailer'][0]['mail_type'] = 'mail';
    375380    }
     381   
     382    // Used to show error / success message for the settings
     383    settings_errors();
    376384
    377385    echo '<div class="wrap">';
  • gosmtp/trunk/readme.txt

    r3396978 r3439556  
    55Tested up to: 6.9
    66Requires PHP: 5.5
    7 Stable tag: 1.1.6
     7Stable tag: 1.1.7
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    11 Send emails from your WordPress site using your preferred SMTP provider like Gmail, Outlook, AWS, Zoho, SMTP.com, Brevo (formerly Sendinblue), Mailgun, Postmark, Sendgrid, Sparkpost, Sendlayer or any custom SMTP provider.
     11Send emails from your WordPress site using your preferred SMTP provider like Gmail, Outlook, AWS, Zoho, SMTP.com, Brevo (formerly Sendinblue), Mailgun, Postmark, Sendgrid, Sparkpost, Sendlayer, SMTP2Go, ElasticEmail, Maileroo, Resend, MailerSend or any custom SMTP provider.
    1212
    1313== Description ==
     
    18181) SMTP.com
    19192) Sendinblue
    20 3) Mailgun, Postmark
     203) Mailgun
    21214) Sendgrid
    22225) Sparkpost
    23236) Sendlayer
    24 7) Maileroo
    25 8) ElasticEmail (Pro)
    26 9) SMTP2Go (Pro)
    27 10) Gmail, Gsuite, Google Workspace (Pro)
    28 11) Outlook / Office 365 (Pro)
    29 12) AWS (Pro)
    30 13) Zoho (Pro)
    31 14) Or any custom SMTP provider
     247) Postmark
     258) Maileroo
     269) ElasticEmail (Pro)
     2710) SMTP2Go (Pro)
     2811) Gmail, Gsuite, Google Workspace (Pro)
     2912) Outlook / Office 365 (Pro)
     3013) AWS (Pro)
     3114) Zoho (Pro)
     3215) Resend (Pro)
     3316) MailerSend (Pro)
     3417) Or any custom SMTP provider
    3235
    3336WordPress uses the PHP mail function to send emails generated by WordPress. The PHP mail function sends emails over the IP of your hosting provider's servers which can have a bad reputation and be blacklisted by many email providers like Gmail, Yahoo, Office 365, Zoho, etc. causing your WordPress originated emails to land in the SPAM folder of your users. By using GoSMTP you ensure that your emails reach the inbox of your user(s).
     
    4952You can resend any email, from the email log wizard. You can also resend multiple emails in bulk.
    5053
     54=== Notifications ===
     55You can get notified about failed email delivery on your configured channel, we currently support Mail, Slack and Discord.
     56
    5157=== Premium Features ===
    5258- Forward Emails
     
    5460
    5561=== Coming Soon ===
    56 - Backup Email Logs
    5762- Track Email Views
    5863- Track Clicks
     
    8388
    8489== Changelog ==
     90= 1.1.7 (Jan 14, 2026) =
     91* [Pro-Feature] Support for email provider Resend has been added.
     92* [Pro-Feature] Support for email provider MailerSend has been added.
     93* [Pro-Feature] Added Notifications feature to send notifications on email delivery failure via Email, Slack and Discord.
     94* [Task] Warnings were observed on PHP version 8.4 and above. This is fixed.
    8595
    8696= 1.1.6 (Nov 17, 2025) =
     
    100110
    101111= 1.1.4 (Jul 24, 2025) =
    102 * [Feature Pro] Support for email providers ElasticEmail and SMTP2Go have been added.
     112* [Pro-Feature] Support for email providers ElasticEmail and SMTP2Go have been added.
    103113* [Task] Sendinblue will now be shown as Brevo, as Sendinblue changed its branding from Sendinblue to Brevo.
    104114
Note: See TracChangeset for help on using the changeset viewer.