Patrick
Forum Replies Created
-
Hi @waleed32354,
Thanks for sharing the details. Based on the error message and the fact that test emails via WP Mail SMTP are working, it looks like the issue may be related to how the wp_mail() function is being fired in your setup.
WP Mail SMTP hooks into WordPress after the wp_mail() function is called, so if something in the Gravity Forms workflow or another plugin is bypassing or altering the way wp_mail() is triggered, the mailer may not be able to take over as expected. This would explain why the notification is created successfully but fails at the sending stage.
I’d recommend double‑checking that the notification is indeed using the standard wp_mail() call and that no custom code or conflicting plugin is interfering with it. Once wp_mail() is fired correctly, WP Mail SMTP should be able to hook in and send the email through SendGrid without issue.
Hope this helps.
Hi @mattheeuwsk,
Thanks for reaching out to us! To get the SendGrid mailer working with the EU version, please use the snippet below.
add_filter( 'pre_http_request', function ( $preempt, $args, $url ) {
if ( $preempt !== false ) {
return $preempt;
}
if ( strpos( $url, 'https://api.sendgrid.com/v3/mail/send' ) !== false ) {
$url = str_replace(
'api.sendgrid.com/v3/mail/send',
'api.eu.sendgrid.com/v3/mail/send',
$url
);
return wp_remote_request( $url, $args );
}
return $preempt;
}, 10, 3 );This should ensure proper configuration and smooth integration with your setup.
Thanks and all the best.
Hi @microscan5ep,
Thanks for the follow-up and apologies for missing your initial follow-up.
Looking at the latest logs, this suggests that there might be a code conflict causing the plugin to keep SMTP authentication enabled despite the SMTP settings. This explains why in the logs it still shows as enabled.
SMTPAuth: bool(true)To narrow down on this and get it fixed, I’d recommend looking for any code that modifies
$phpmailer->SMTPAuthin your setup, as well as checking the plugins list for anything suspicious that might be manipulating email sending.I hope this helps.
Hi @evelinboldem32,
Thanks so much for sharing your experience, we’re really glad to hear everything is working smoothly for you now and that the setup felt clear and reliable.
If there’s anything we could improve or anything that would’ve made the experience even better on your end, feel free to let us know. We’re always looking for ways to refine the plugin and your feedback helps us do that.
Regards.
Hi @sonny69,
Yes, the Sugar Calendar Lite plugin does include the calendar view through shortcodes.
To render the calendar layout, you can make use of the short code as follows.
[sugarcalendar_events_calendar]For a complete walkthrough on the available options, checkout our calendar shortcode guide.
I hope this clears things up!
Hi @chronicsys,
That’s a completely fair question, and I understand why you feel that way.
The only reason I asked is because the issues you ran into clearly caused real friction, and having insight into those specific problems would help us fix what went wrong, for you and for anyone else who might hit the same roadblocks. That’s part of our commitment to fighting for our customers’ success, even when we fall short.
You’re not obligated to spend any more time on this, and I fully respect whatever you decide. If you’re open to sharing the biggest blockers you faced, we’ll take it from there on our side. If not, your feedback here is still genuinely helpful, and I appreciate you taking the time to share it.
Kind regards.
Hi @chronicsys,
Thank you for taking the time to share your experience so openly. I’m genuinely sorry to hear that the plugin didn’t meet your expectations in terms of functionality and markup. While I’m glad our support team was able to help, it’s clear we fell short for you on the product side expectations, and that’s something we take seriously.
We’re always working to improve the plugin experience, and feedback like yours is invaluable in helping us understand where things aren’t landing. As I couldn’t confirm your specific support thread, If you’d be open to it, we’d really appreciate it if you could reach out to us directly through the support channel once more with a bit more detail about the issues you ran into. That way we can learn from your experience and make improvements that benefit everyone. Feel free to reference this thread in your email.
Thanks again for sharing your perspective, it goes a long way in helping us do better.
Hi @uentooser,
Thanks for the follow-up, please add the following snippet to fix the issue on the second shared page.
/* Override global heading styles for Sugar Calendar event titles */
.sugar-calendar-event-list-block__listview h1,
.sugar-calendar-event-list-block__listview h2,
.sugar-calendar-event-list-block__listview h3,
.sugar-calendar-event-list-block__listview h4,
.sugar-calendar-event-list-block__listview h5,
.sugar-calendar-event-list-block__listview h6 {
font-family: inherit !important;
text-decoration: none !important;
color: inherit !important;
-webkit-text-fill-color: currentColor !important;
}I hope this helps.
Hi @microscan5ep,
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 @microscan5ep,
To help us see what’s happening now, could you please send a fresh copy of the full debug output from a new Test Email after confirming that authentication is disabled in the settings?
This will show us the current parameters the plugin is using and help us determine whether something is still forcing authentication.
Once we have the updated log, we can dig deeper and figure out the next steps.
Thanks for your patience while we sort this out.
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!
- This reply was modified 6 months, 3 weeks ago by Patrick.
Hi @anandiprema2,
Thanks for the update on your progress. With the fields enabled, you should now be able to apply your changes and set up the mailer configuration with the correct values.
However, while I cannot confirm the specific credentials for your account, I recommend checking the SMTP credentials directly from the Zoho Guides. As shared, you can use tools like dnschecker.org/smtp-test-tool.php to verify the credentials before setting them up within the WP Mail SMTP settings section.
Hope this helps.
Hi @uentooser,
Thanks for reaching out, and sorry to hear about the challenge with the events title styling.
I reviewed the widget display on your site, and it appears that you have some styling from the Elementor end that’s overriding the event title styles on the widget. I, however, tested this on my end with no luck replicating it.
To prevent this, could you please try adding the following CSS snippet?
/* Override global heading styles for Sugar Calendar event titles */
.sugar-calendar-event-list-block__plainview h1,
.sugar-calendar-event-list-block__plainview h2,
.sugar-calendar-event-list-block__plainview h3,
.sugar-calendar-event-list-block__plainview h4,
.sugar-calendar-event-list-block__plainview h5,
.sugar-calendar-event-list-block__plainview h6 {
font-family: inherit !important;
text-decoration: none !important;
color: inherit !important;
-webkit-text-fill-color: currentColor !important;
}
/* Ensure event title links render uniformly */
.sugar-calendar-event-list-block__event__title a,
.sugar-calendar-event-list-block__event__title a:link,
.sugar-calendar-event-list-block__event__title a:visited,
.sugar-calendar-event-list-block__event__title a:hover,
.sugar-calendar-event-list-block__event__title a:focus {
font-family: inherit !important;
text-decoration: none !important;
color: inherit !important;
-webkit-text-fill-color: currentColor !important;
}
/* Normalize nested inline elements inside the link */
.sugar-calendar-event-list-block__event__title a * {
font-family: inherit !important;
color: inherit !important;
-webkit-text-fill-color: inherit !important;
}I hope this helps.
Hi @anandiprema2,
I’m sorry to hear that and just to confirm, the greyed‑out fields just mean your SMTP settings are locked in
wp-config.php. Once those lines are updated or removed, you’ll regain control. If editing the file feels overwhelming, I’d recommend looping in the host team for assistance with the adjustment.For a simpler path, consider switching to one of the supported Transactional Mailers here: WP Mail SMTP Mailers Guide. These handle the connection for you and avoid the manual setup.
I hope this helps.
Hi @anandiprema2,
Thanks for sharing the details. The error you’re seeing typically means the site cannot reach the mail server. Since you’ve switched hosting to Hostinger and mail to Zoho, this points to a connection issue with the Zoho SMTP service.
To fix this, please try out the following troubleshooting steps:
- Verify credentials: Double‑check the SMTP host, port, username, and password being used for Zoho. If you prefer, you can use tools like dnschecker.org/smtp-test-tool.php to confirm whether your server can reach Zoho’s SMTP.
- Run an Email Test: If the credentials are correct, from your WordPress dashboard, go to WP Mail SMTP » Tools and send out a test email. If this fails, it confirms the server cannot reach Zoho’s SMTP, which usually indicates a hosting/network restriction rather than a WordPress misconfiguration.
Greyed‑out fields
Since you mentioned the fields are greyed out, this suggests the SMTP credentials are being defined via constants in your
wp-config.phpfile. In that case, they cannot be edited directly in the plugin settings. You’ll need to update or remove those constants in the configuration file to regain control. Here’s a guide on how that works: WP Mail SMTP constants setup.I hope this helps point you in the right direction.