<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Reminders - Documentation</title>
	<atom:link href="https://docs.myeventon.com/documentation/addons/reminders/feed/" rel="self" type="application/rss+xml" />
	<link>https://docs.myeventon.com</link>
	<description>EventON Documentation</description>
	<lastBuildDate>Tue, 01 Apr 2025 16:37:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Setting Up Server-Level Cron for EventON Reminders Addon</title>
		<link>https://docs.myeventon.com/documentations/setting-up-server-level-cron-for-eventon-reminders-addon/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setting-up-server-level-cron-for-eventon-reminders-addon</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Tue, 01 Apr 2025 16:37:27 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=document&#038;p=29467</guid>

					<description><![CDATA[<p>The EventON Reminders Addon allows you to send automatic reminder emails to event guests (via RSVP or Tickets addons) before and after events. These reminders rely on WordPress’s WP-Cron system, which triggers only when your site is visited. For timely delivery on low-traffic sites, setting up a server-level cron job ensures reminders are sent precisely [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/setting-up-server-level-cron-for-eventon-reminders-addon/">Setting Up Server-Level Cron for EventON Reminders Addon</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>The <strong><a href="https://www.myeventon.com/addons/reminders/" title="">EventON Reminders Addon</a></strong> allows you to send automatic reminder emails to event guests (via RSVP or Tickets addons) before and after events. These reminders rely on WordPress’s WP-Cron system, which triggers only when your site is visited. For timely delivery on low-traffic sites, setting up a server-level cron job ensures reminders are sent precisely as scheduled. Here’s how to configure it.</p>



<h2 class="wp-block-heading">Prerequisites</h2>



<ul class="wp-block-list">
<li><strong>EventON Reminders Addon</strong> installed and activated (compatible with RSVP and Tickets addons).</li>



<li>Access to your server’s control panel (e.g., cPanel) or SSH for cron setup.</li>



<li>WordPress installed and configured with EventON settings.</li>
</ul>



<h2 class="wp-block-heading">Why Use Server-Level Cron?</h2>



<p>WP-Cron depends on site visits, which can delay reminders if your site has low traffic. A server-level cron job runs independently, checking and sending reminders at set intervals (e.g., every 5 minutes), ensuring reliability.</p>



<h2 class="wp-block-heading">Step-by-Step Setup</h2>



<h3 class="wp-block-heading">1. Disable WP-Cron (Optional but Recommended)</h3>



<p>To rely solely on server cron:</p>



<ul class="wp-block-list">
<li>Open your WordPress site’s wp-config.php file (usually in the root directory).</li>



<li>Add this line before the /* That&#8217;s all, stop editing! */ comment: <br><code><strong>define('DISABLE_WP_CRON', true);</strong></code></li>



<li>Save the file. This prevents WP-Cron from running on page loads, avoiding overlap with your server cron.</li>
</ul>



<h3 class="wp-block-heading">2. Configure the Reminders in EventON</h3>



<ul class="wp-block-list">
<li>Go to <strong>EventON Settings > Reminders</strong> in your WordPress admin panel.</li>



<li>Enable up to 2 pre-event and 2 post-event reminders.</li>



<li>Set the timing (e.g., “60 minutes before event start”) and customize email content.</li>



<li>For each event, edit the event page and enable reminders in the <strong>Reminders meta box</strong>. This schedules a one-time cron job (e.g., evorm_reminder_&lt;event_id>_&lt;type>).</li>
</ul>



<h3 class="wp-block-heading">3. Set Up the Server Cron Job</h3>



<p>The cron job triggers wp-cron.php to process all scheduled tasks, including reminders.</p>



<h4 class="wp-block-heading">Using cPanel</h4>



<ol class="wp-block-list">
<li>Log in to cPanel and find <strong>Cron Jobs</strong>.</li>



<li>Under “Add New Cron Job”:
<ul class="wp-block-list">
<li><strong>Common Settings</strong>: Select “Every 5 Minutes” (*/5 * * * *) for frequent checks.</li>



<li><strong>Command</strong>: Enter: <code><strong>curl -s "https://yoursite.com/wp-cron.php?doing_wp_cron" > /dev/null 2>&amp;1</strong></code>
<ul class="wp-block-list">
<li>Replace https://yoursite.com with your actual site URL.</li>



<li>-s silences output, > /dev/null 2>&amp;1 discards logs.</li>
</ul>
</li>
</ul>
</li>



<li>Click <strong>Add New Cron Job</strong> to save.</li>
</ol>



<h4 class="wp-block-heading">Using SSH</h4>



<ol class="wp-block-list">
<li>Access your server via SSH (e.g., ssh user@yourserver.com).</li>



<li>Open the crontab file: <code><strong>crontab -e</strong></code></li>



<li>Add this line: <br><code><strong>*/5 * * * * curl -s "https://yoursite.com/wp-cron.php?doing_wp_cron" > /dev/null 2>&amp;1</strong></code></li>



<li>Save and exit (e.g., :wq in vi).</li>
</ol>



<h4 class="wp-block-heading">Alternative with wget</h4>



<p>If curl isn’t available, use:</p>



<pre class="wp-block-code"><code class=""><code>*/5 * * * * wget -q -O /dev/null "https://yoursite.com/wp-cron.php?doing_wp_cron"</code></code></pre>



<h3 class="wp-block-heading">4. Verify the Setup</h3>



<ul class="wp-block-list">
<li>Install a plugin like <strong>WP Crontrol</strong> or <strong>Advanced Cron Manager</strong>.</li>



<li>Check the <strong>Cron Events</strong> tab for events like evorm_reminder_&lt;event_id>_&lt;type> (e.g., evorm_reminder_93_evorm_pre_1-rs).</li>



<li>Ensure the “Next Run” time updates after each cron execution (every 5 minutes).</li>



<li>Test by scheduling a reminder for a near-future event and confirming the email is sent.</li>
</ul>



<h2 class="wp-block-heading">Notes</h2>



<ul class="wp-block-list">
<li><strong>Frequency</strong>: Every 5 minutes (*/5 * * * *) is recommended for timely reminders. Adjust to hourly (0 * * * *) if less precision is needed.</li>



<li><strong>Security</strong>: Ensure wp-cron.php is accessible (file permissions typically 644).</li>



<li><strong>Troubleshooting</strong>: Check server cron logs (e.g., /var/log/cron) or enable WordPress debug logging (define(&#8216;WP_DEBUG_LOG&#8217;, true);) to trace issues.</li>



<li><strong>Dynamic Events</strong>: Each enabled reminder creates a unique cron job tied to the event ID and type (e.g., pre/post), managed by EVORM_Cron->perform_cron().</li>
</ul>



<p></p><p>The post <a href="https://docs.myeventon.com/documentations/setting-up-server-level-cron-for-eventon-reminders-addon/">Setting Up Server-Level Cron for EventON Reminders Addon</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to setup reminders for Tickets</title>
		<link>https://docs.myeventon.com/documentations/how-to-setup-reminders-for-tickets/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-setup-reminders-for-tickets</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Thu, 08 Feb 2018 20:50:30 +0000</pubDate>
				<guid isPermaLink="false">http://docs.myeventon.com/?post_type=document&#038;p=26867</guid>

					<description><![CDATA[<p>Getting Started with Reminders for Tickets Addon After the Reminders addon is installed and activated, go to EventON Settings &#62; Tickets&#160; &#62; Reminders. In here you can enable upto 2 before event start reminder and 2 after event end reminders. General Setting fields &#8220;From&#8221; Name &#8211; you can set the from name that will show [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/how-to-setup-reminders-for-tickets/">How to setup reminders for Tickets</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<h3 class="wp-block-heading">Getting Started with Reminders for Tickets Addon</h3>



<p>After the Reminders addon is installed and activated, go to EventON Settings &gt; Tickets&nbsp; &gt; Reminders. In here you can enable upto 2 before event start reminder and 2 after event end reminders.</p>



<figure class="wp-block-image"><img fetchpriority="high" decoding="async" width="649" height="840" src="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.24.28.jpg" alt="" class="wp-image-28877" srcset="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.24.28.jpg 649w, https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.24.28-232x300.jpg 232w" sizes="(max-width: 649px) 100vw, 649px" /></figure>



<h3 class="wp-block-heading">General Setting fields</h3>



<p><strong>&#8220;From&#8221; Name</strong> &#8211; you can set the from name that will show in the email customer receive. If left blank the default website name will be used for this.</p>



<p><strong>&#8220;From&#8221; Email Address</strong> &#8211; Just like the from name from email will also show in the customer email. If left blank default wordpress admin email address will be used instead.</p>



<h3 class="wp-block-heading">Enabling a Reminder</h3>



<p>Once you enable any of the reminders you will see a new set of settings open up.</p>



<figure class="wp-block-image"><img decoding="async" width="649" height="485" src="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.25.38.jpg" alt="" class="wp-image-28879" srcset="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.25.38.jpg 649w, https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.25.38-300x224.jpg 300w" sizes="(max-width: 649px) 100vw, 649px" /></figure>



<p><strong>Amount of time (in minutes)</strong>&#8230;&nbsp; &#8212; (required) you can set the before or after time in minutes in this input field. Make sure you read carefully which type of field this is. If this is a before event start reminder, the amount of time will be the time before event start &#8212; to send the reminder email. Likewise, for after event end, will be after the event end.</p>



<p><strong>Select emailing group</strong> &#8212; From this dropdown list you can select the type of guests group you want the reminder emails to be sent to.</p>



<p><strong>Email Subject Line</strong> &#8211; the subject for the reminder email. If left blank &#8220;Tickets Notification&#8221; will be used.</p>



<p><strong>Email Message</strong> &#8212; (required) the actual message body of the email. The text you type in here will nest inside default EventON email template.</p>



<p>Email message dynamic tags &#8211; you can use these dynamic message tags inside the email message text box:&nbsp;<i><code>{event-name}</code>&nbsp;<code>{event-link}</code></i></p>



<p>These tags will be replaced with actual content according to the event on the actual reminder email.</p>



<h3 class="wp-block-heading">Enabling the Reminders for Events</h3>



<p>Once the reminders have been set within Tickets settings, you can go to any event with Tickets activated to enable the reminders for that particular event.</p>



<p>In the Tickets meta box for event edit page you can find the enabled Reminder options. In here you can enable the reminder for this particular event.</p>



<p>Once reminders are enabled and saved for the event, a cron job will be created for just this event to take placed at the time set on reminder settings.</p>



<figure class="wp-block-image"><img decoding="async" width="649" height="192" src="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.27.05.jpg" alt="" class="wp-image-28882" srcset="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.27.05.jpg 649w, https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.27.05-300x89.jpg 300w" sizes="(max-width: 649px) 100vw, 649px" /></figure>



<h3 class="wp-block-heading">Reminder Email Delays</h3>



<p>Reminder emails are sent using WordPress cron jobs. Each event that have reminders enabled will have its own one time cron job. As soon as the reminder cron job was performed to send out the email, the cron job will be deleted.</p>



<p>Since the reminder emails rely on WP Cron jobs, if your website does not get refreshed as often, the reminder emails may not get sent in the exact time, while it will be sent next time the website get loaded and the cron job is performed.</p><p>The post <a href="https://docs.myeventon.com/documentations/how-to-setup-reminders-for-tickets/">How to setup reminders for Tickets</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to setup reminders for RSVP</title>
		<link>https://docs.myeventon.com/documentations/how-to-setup-reminders-for-rsvp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-setup-reminders-for-rsvp</link>
		
		<dc:creator><![CDATA[Artem Barkov]]></dc:creator>
		<pubDate>Thu, 08 Feb 2018 20:41:51 +0000</pubDate>
				<guid isPermaLink="false">http://docs.myeventon.com/?post_type=document&#038;p=26862</guid>

					<description><![CDATA[<p>Getting Started with Reminders for RSVP Addon After the Reminders addon is installed and activated, go to EventON Settings &#62; RSVP &#62; Reminders. In here you can enable upto 2 before event start reminder and 2 after event end reminders. General Setting fields &#8220;From&#8221; Name &#8211; you can set the &#8220;from&#8221; name that will show [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/how-to-setup-reminders-for-rsvp/">How to setup reminders for RSVP</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<h3 class="wp-block-heading">Getting Started with Reminders for RSVP Addon</h3>



<p>After the Reminders addon is installed and activated, go to <strong>EventON Settings &gt; RSVP &gt; Reminders</strong>. In here you can enable upto 2 before event start reminder and 2 after event end reminders.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="649" height="779" src="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.28.11.jpg" alt="" class="wp-image-28885" srcset="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.28.11.jpg 649w, https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.28.11-250x300.jpg 250w" sizes="auto, (max-width: 649px) 100vw, 649px" /></figure>



<h3 class="wp-block-heading">General Setting fields</h3>



<p><strong>&#8220;From&#8221; Name</strong> &#8211; you can set the &#8220;from&#8221; name that will show in the email customer receives. If left blank the default website name will be used for this.</p>



<p><strong>&#8220;From&#8221; Email Address</strong> &#8211; Just like the from name from email will also show in the customer email. If left blank default wordpress admin email address will be used instead.</p>



<h3 class="wp-block-heading">Enabling a Reminder</h3>



<p>Once you enable any of the reminders you will see a new set of settings open up.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="649" height="565" src="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.29.16.jpg" alt="" class="wp-image-28886" srcset="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.29.16.jpg 649w, https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.29.16-300x261.jpg 300w" sizes="auto, (max-width: 649px) 100vw, 649px" /></figure>



<p><strong>Amount of time (in minutes)</strong>&#8230;&nbsp; &#8212; (required) you can set the before or after time in minutes in this input field. Make sure you read carefully which type of field this is. If this is a before event start reminder, the amount of time will be the time before event start &#8212; to send the reminder email. Likewise, for after event end, will be after the event end.</p>



<p><strong>Select emailing group</strong> &#8212; From this dropdown list you can select the type of guests group you want the reminder emails to be sent to.</p>



<p><strong>Email Subject Line</strong> &#8211; the subject for the reminder email. If left blank &#8220;RSVP Notification&#8221; will be used.</p>



<p><strong>Email Message</strong> &#8212; (required) the actual message body of the email. The text you type in here will nest inside the default EventON email template.</p>



<p>Email message dynamic tags &#8211; you can use these dynamic message tags inside the email message text box:&nbsp; <i><code>{event-name}</code>&nbsp;<code>{event-link}</code><code>{rsvp-yes-count}</code><code>{rsvp-no-count}</code></i></p>



<p>These tags will be replaced with actual content according to the event on the actual reminder email.</p>



<h3 class="wp-block-heading">Enabling the Reminders for Events</h3>



<p>Once the reminders have been set within RSVP settings, you can go to any event with RSVP activated to enable the reminders for that particular event.</p>



<p>In the RSVP&nbsp; Reminders meta box for event edit page you can find the enabled Reminder options. In here you can enable the reminder for this particular event.</p>



<p>Once reminders are enabled and saved for the event, a cron job will be created for just this event to take place at the time set on reminder settings.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="649" height="249" src="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.27.11.jpg" alt="" class="wp-image-28887" srcset="https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.27.11.jpg 649w, https://docs.myeventon.com/wp-content/uploads/2018/02/Screenshot-2025-01-01-at-23.27.11-300x115.jpg 300w" sizes="auto, (max-width: 649px) 100vw, 649px" /></figure>



<h3 class="wp-block-heading">Reminder Email Delays</h3>



<p>Reminder emails are sent using WordPress cron jobs. Each event that have reminders enabled will have its own one-time cron job. As soon as the reminder cron job is performed to send out the email, the cron job will be deleted.</p>



<p>Since the reminder emails rely on WP Cron jobs, if your website does not get refreshed as often, the reminder emails may not get sent in the exact time, while it will be sent next time the website get loaded and the cron job is performed.</p><p>The post <a href="https://docs.myeventon.com/documentations/how-to-setup-reminders-for-rsvp/">How to setup reminders for RSVP</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Changelog for Reminders</title>
		<link>https://docs.myeventon.com/documentations/changelog-for-reminders/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=changelog-for-reminders</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Thu, 08 Feb 2018 20:20:45 +0000</pubDate>
				<guid isPermaLink="false">http://docs.myeventon.com/?post_type=document&#038;p=26861</guid>

					<description><![CDATA[<p>v 0.12 (2025-2-21)ADDED: Reminder email preview in event edit pageFIXED: reminder emails are not going through v 0.11 (2025-2-3)ADDED: preview reminder email from settingsFIXED: email message body not showing the content correctlyFIXED: undefined addons variable v 0.10 (2024-11-15)ADDED: Option to set for each reminder in setting to email only opted attendees for rsvpFIXED: send_email() not [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/changelog-for-reminders/">Changelog for Reminders</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>v 0.12 (2025-2-21)</strong><br>ADDED: Reminder email preview in event edit page<br>FIXED: reminder emails are not going through</p>



<p><strong>v 0.11 (2025-2-3)</strong><br>ADDED: preview reminder email from settings<br>FIXED: email message body not showing the content correctly<br>FIXED: undefined addons variable</p>



<p><strong>v 0.10 (2024-11-15)</strong><br>ADDED: Option to set for each reminder in setting to email only opted attendees for rsvp<br>FIXED: send_email() not getting settings values correctly<br>FIXED: settings values properly loaded</p>



<p><strong>v 0.9 (2024-11-14)</strong><br>FIXED: tickets cron jobs not creating</p>



<p><strong>v 0.8 (2024-11-12)</strong><br>FIXED: PHP 8.2 issues<br>FIXED: issue with saving data log<br>FIXED: ticket reminders not showing in events</p>



<p><strong>v 0.7 (2024-2-21)</strong><br>FIXED: email message html content not saving</p>



<p><strong>v 0.6 (2023-10-30)</strong><br>FIXED: email message html content stripped off<br>FIXED: PHP 8.2 compatibility</p>



<p><strong>v 0.5 (2022-3-21)</strong><br>FIXED: get_reminder_prop() method array error<br>FIXED: unexpected code error on class-admin.php file<br>FIXED: PHP new version compatibility<br>FIXED: meta box display styles<br>UPDATED: Reminders emailing notice in settings</p>



<p><strong>v 0.4 (2018-5-14)</strong><br>FIXED: Reminders are not saving for correct times<br>FIXED: field naming error in settings</p>



<p><strong>v 0.3 (2018-3-30)</strong><br>FIXED: reminders on tickets addon causing save error</p>



<p><strong>v 0.2 (2018-3-13)</strong><br>ADDED: Ability to include HTML content inside message<br>ADDED: reminder notice to event edit meta box<br>ADDED: Separate event meta box for all reminders in one place<br>ADDED: cronjobs status of reminders for event<br>FIXED: unschedule cron jobs not recording correct<br>FIXED: skip reminders that are not set during event save<br>FIXED: resaving event with changes time creating new cron jobs instead of deleting old<br>FIXED: changing event time not deleting already created cron reminders<br>UPDATED: Consolidate reminder types</p>



<p><strong>v 0.1 (2018-2-8)</strong><br>Initial release</p><p>The post <a href="https://docs.myeventon.com/documentations/changelog-for-reminders/">Changelog for Reminders</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
