Patrick
Forum Replies Created
-
Hi @vidhapratiwi,
Thanks for reaching out and sorry to hear about the frustrations with the Google Mailer connection.
Usually when we see the Gmail/Google mailer repeatedly disconnecting from WP Mail SMTP and displaying the ‘invalid grant’ error, it means that your Google API app (OAuth screen section: https://a.supportally.com/HMVXQm) is in the “Test mode” and needs to be changed to “Production” to resolve this issue.
Can you please look into adjusting this setting in Google’s API & Services > OAuth consent screen > Publishing status area and see if it resolves this issue for you?
In addition, here are some few other causes that could behind the connection issue:
- Changing your Google password
- Enabling or disabling 2FA
- Resetting Google account access
- Activating Google’s advanced protection program
- Revoking the app’s permissions to your profile
- App OAuth permission revoked by Google
- App moved from public to private/internal mode
- App verification failure during a re‑audit
- Suspension of the Google account
- Manually unlinking the connected account
- Inactivity (tokens expire if unused for 6 months)
- Adding/removing sensitive scopes without completing the app review process
- Hitting the maximum limit for OAuth tokens on a Google profile (50) or service (25 in some cases)
When any of these events occur, the Gmail connection will need to be recreated on your WordPress site.
For questions related to Pro features or plan details, we’re unable to provide sales or account‑specific information here in the public forum. Please contact us directly and our team will be happy to assist you further. You can also review the full list of features on our WP Mail SMTP site.
I hope this helps clarify why the connection might be breaking and how to move forward.
Thanks!
Hi @oscar88g,
Thanks for reaching out and sorry to hear about the challenge.
Thanks for reaching out! Since WP Mail SMTP acts as a bridge between WordPress and your mailer, the best way to confirm what’s happening with the “Completed order” email is to enable Debug Events in WP Mail SMTP under Tools. This will let you verify whether the email is actually being handed off to your mailer service.
If you’re using a transactional mailer (like SendLayer, SendGrid, Amazon SES, etc.), you’ll also want to check the mailer’s own logs to see if the message was accepted and delivered. That will help pinpoint whether the issue is happening inside WordPress, during the handoff, or further downstream.
We have a step‑by‑step guide here that walks you through enabling debug events and checking logs: How to Debug Email Sending Issues in WP Mail SMTP
Give that a try, and let us know what you find.
Hi @olau82,
Thanks for sharing the details and sorry to hear about your experience.
I wasn’t able to replicate the behavior on my end, which makes me suspect that another plugin might be injecting or modifying the excerpt. Could you confirm whether you have any plugins installed that handle excerpts, content filters, or post display customization? That would help narrow down the cause and point us in the right direction. This will give us an idea of what might be happening.
Kind regards.
Hi @createscape,
Thanks for reaching out, and I’m sorry to hear about the challenge.
I ran some tests with the timezone both enabled and disabled, setting mine to Vancouver, but I wasn’t able to replicate the issue.
Could you please double-check that you’re on the latest version? To help us troubleshoot further, it would be very useful if you could share a screencast showing some more details on your local clean setup, showing:
– The timezone settings under WordPress Settings
– The timezone settings under Sugar Calendar Settings
– The exact steps you’re following to replicate the experience.This will help us confirm whether something might have been missed in my test steps.
Looking forward to hearing from you.
Hi @candeeg,
Thanks for reaching and apologies for the confusion.
At the moment, we have a limit on the number of upcoming events set to 3 months. This explains why an event in April was not showing up.
While the team has taken note of this for improvement, if you’d be open to it, you can increase this range through a custom snippet.
/**
* Set event list range limit to 12 months.
*
* @return string
*/
function sugar_calendar_patch_sugar_calendar_event_list_block_upcoming_events_limit() {
return '+12 month';
}
add_filter(
'sugar_calendar_event_list_block_upcoming_events_limit',
'sugar_calendar_patch_sugar_calendar_event_list_block_upcoming_events_limit'
);
The snippet will increase the range to 12 Month, and with that increase,I hope this helps.
Hi @passerbliss,
We haven’t heard from you in a while, so I’m going to go ahead and close out this thread for now. If you’re still having trouble, feel free to respond here at your convenience and we’ll be happy to help.
Have a great day!
Hi @learntechwell,
Thanks for reaching out to us.
To confirm, staging and local sites do not count towards license limits. For some more information around the licensing, could you please drop us a line through our contact page when you get the chance?
You’re welcome to just include a link to this post, if you’d prefer to do that.
Have a great one.
Hi @hotchd,
Thanks for reaching out, and I’m sorry you’re running into this issue.
The error you’re seeing is coming from Google and typically means there’s a problem with the credentials used during the authorization request. To troubleshoot, if you have confirmed all the credentials from your Google app, try signing out of any default Google accounts in your browser by visiting Google.com. Then reconnect using the same account you used to create your Google app (client ID and client secret).
If the issue persists, I recommend reconfiguring the Google/Gmail mailer by following our step-by-step guide.
Prefer video? Here’s a video walkthrough guide.
I understand this can be frustrating, and I appreciate your patience. Please note this limitation is from Google, not WP Mail SMTP.
If you’d like to explore alternative mailers, you can view the full list of Supported Mailers.
Hope this helps and thanks again!
Hi @onlineshop32344,
We haven’t heard from you in a while, so I’m going to go ahead and close out this thread for now. If you’re still having trouble, feel free to respond here at your convenience and we’ll be happy to help.
Have a great day!
Hi @wpfed,
Thanks for reaching out! If you’d like to override the default
is_email_callbackand use a custom one, you can do so with the following snippet:// Add custom email address validator for WP Mail SMTP - Other SMTP mailer.
add_action( 'init', function () {
if ( class_exists( 'WPMailSMTP\MailCatcherV6' ) ) {
\WPMailSMTP\MailCatcherV6::$validator = function ( $email ) {
return is_email( $email );
};
}
} );This will allow you to define your own callback logic instead of relying on the default.
Thanks again for your question!
Hi @annacer,
Thanks for reaching out and for sharing this idea! At the moment, Sugar Calendar does not include an option to schedule automated thank‑you emails after an event or to set reminders before an event.
That said, I’ve noted this as a feature request so our team can review it as we continue planning the product roadmap.
Thank you again.
Hi @passerbliss,
Thanks for reaching out to us, and sorry to hear about the challenge.
I ran a test on my end and was able to install the plugin on a WordPress.com site both through the Admin dashboard and also through manual upload. In both cases, it worked.
Is it possible that there might be some limitation from your account, preventing the plugin from being installed? Could you confirm with the host to isolate any concerns around limitations in installing the plugin for your site? Could you also please check to confirm if this only impacts the Sugar Calendar plugin?
If this only impacts the Sugar Calendar plugin, please share with us more on the steps you’re following to replicate this, and also, if you don’t mind, include a screencast of the experience from your account?
I hope to hear from you soon!
Hi @kassela,
Thanks for your patience.
I received an update from the team and it appears that you have some
open_basedirrules that restrict access to paths, and the path for this menu item is failing those checks (/wp-content/plugins/https://wpmailsmtp.com/lite-upgrade/).For context, WP Mail SMTP Lite adds the “Upgrade to Pro” menu item that points to
https://wpmailsmtp.com/lite-upgrade/. When rendering menu items, WordPress core usesfile_existsto check if the file the menu is pointing to exists. If it does it builds the full path, otherwise it links directly to the provided menu item URL.To fix this, please either adjust the open_basedir settings in your cPanel, contact your hosting provider to disable open_basedir restrictions, or add the paths to the allowed list.
I hope this helps.
Hi @kassela,
Thanks so much for sharing this.
I’ll check in with our development team to review this behavior and see what might be causing the substitution. Once I have more clarity, I’ll follow up here with any findings or recommendations.
In the meantime, please note that this should not interfere with your email sending process, and your email should continue getting sent as expected.
Thanks again for flagging this!
Hi @orionlearn,
Thanks for reaching out! Please be aware that the WP Mail SMTP plugin serves as a bridge between your WordPress site and your mailer (in your case, your SMTP server). The actual sending of emails is handled by your email provider.
From your description, it’s possible that the sending domain might not be fully authenticated, and as such, the emails are being flagged as spam.
To assist with checking out any sections that might need updating, please check out this guide on sending a test email. This will give you an idea of anything that might be causing the issue.
I hope this helps. Thanks!