Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 21, 2016 12:00 pm

Building Your Startup: SendingReminders

Final product image
What You'll Be Creating

This tutorial is part of the Building Your Startup With PHP series on Envato Tuts+. In this series, I'm guiding you through launching a startup from concept to reality using my Meeting Planner app as a real-life example. Every step along the way, I'll release the Meeting Planner code as open-source examples you can learn from. I'll also address startup-related business issues as they arise.

In this two-part tutorial, I'm describing how I built the infrastructure for reminders and their delivery. Today, I'm going to guide you through monitoring when to deliver reminders and how to send the emails.

If you haven't tried out Meeting Planner yet, go ahead and schedule your first meeting. I do participate in the comment threads below, so tell me what you think! I'm especially interested if you want to suggest new features or topics for future tutorials.

As a reminder, all of the code for Meeting Planner is written in the Yii2 Framework for PHP. If you'd like to learn more about Yii2, check out our parallel series Programming With Yii2.

Monitoring Time for Reminders

As time passes, we need to watch over the MeetingReminder table to know when to deliver reminders. Ideally, we want reminders to be delivered exactly on time, e.g. to the minute.

Running Background Tasks

Timeliness depends on how regularly we run background tasks for monitoring. Currently, in our pre-alpha stage, I'm running them every five minutes:

This script calls MeetingReminder::check(), which finds meeting reminders that are due and requests to process() them:

Processing a Reminder

MeetingReminder::process() gathers the details needed to create a reminder email. This includes the reminder recipient, meeting details, and time:

The User::checkEmailDelivery() function verifies that the user hasn't blocked emails from the system (or from particular people). It makes sure it's okay to send the reminder:

Here's the User::checkEmailDelivery method. First, it checks to see if the user blocked all email completely (hopefully not) or whether the message is sent from a blocked user:

The New Reminder Email Template

In the Delivering Your Meeting Invitation episode, I wrote about sending email messages within the Yii Framework. In Refining Email Templates, I described updating the templates for our new Oxygen-based responsive templates.

Here's the new reminder_html.php email template:

It includes the date, time, and chosen location (with an address and map link). I've also added the beginnings of a helpful options area with an initial command, "Inform them I'm running late":

Meeting Planner - Reminder of Your Meeting Email

When clicked, we'll email or SMS the other participant(s) that you might be five to ten minutes late. There's nothing else to do or type while you're in a hurry.

Perhaps an eventual mobile version of Meeting Planner will know your GPS location and let them know roughly how far away you are. I've begun tracking ideas like this in Asana for product planning—I'll ask the Envato Tuts+ editorial goddesses (shown below) if I can write about implementing feature and issue tracking in a future tutorial.

Meeting Planner Reminders - Game of Thrones Daenerys Targaryen and Dragon our editorial goddess

Enhancements to Reminders

The reminder email can actually use a few enhanced features:


  • Completing the running late email implementation.

  • Displaying contact information of other participants such as phone numbers and email addresses. The running late email might show just the contact information of the person running late.

  • Display a static Google map showing the location of the meeting.

  • Link to a feature to request or require a rescheduling of the meeting.

  • Link to not just the map but directions to the location.

  • Link to adjust your reminders.

It turns out that most of these features require more work than there is space for in this tutorial. 

For instance, the idea of sending a running late email seems like a simple feature, right? It's a good example of the challenge that MVC frameworks sometimes impose on developers. Implementing a running late email feature required code across a number of files, including a new email template.

Implementing the Running Late Feature

Meeting Planner Reminders - Late Notice Email

Rather than share all the code changes required for this feature, I'll just summarize the places where change was necessary around the framework:


  • The reminder email needed a link with a new command

  • The COMMAND_RUNNING_LATE had to be defined in the Meeting model and controller, and it had to display a confirmation message.

Here's an example of what you see after asking for a late notice to be sent:

Meeting Planner Reminders - Late Notice Confirmation

  • The sendLateNotice() method had to be built in Meeting.php


  • The late-html.php email template had to be built. This includes an option for the other participant to announce that they are "late as well."

  • The UserContact::buildContactString() method had to be completed to include contact information for the person running late.


  • The ACTION_SENT_RUNNING_LATE had to be created to record sending a late notice on behalf of this person in the MeetingLog.

  • The sendLateNotice() method had to check the log and display an error if the late notice had already been sent once.

Here's what the late notice already sent displays: 

Meeting Planner Reminders - Error message - Late Notice Already Sent

It was a lot of code to implement what seemed like a simple addition. 

I waited to test the feature until all of the above changes had been made, and I was pleasantly surprised that they all worked exactly as intended. I only had to make a few cosmetic changes to the text.

Implementing Display of Participant Contact Information

While this feature already existed for iCal files, I needed to complete this feature for email-based meeting invitations. So I extended UserContact::buildContactString($user_id,$mode) for $mode='html'.

Here's the updated code:

I'm sure it will need some polishing as we move into alpha and beta tests, but the functionality is now there.

You can see the contact details displayed in the complete late notice above, but here's the segment it generates:

Meeting Planner Reminder - Contact Details

Polishing Reminders

Things went so well overall with these late mini-features that I added the link to adjust your reminders to the original reminder email as well.

With all this new code, I am certain that I will be polishing the reminders feature and improving it regularly over the next few weeks. However, as Meeting Planner has come together, more functionality is often possible—often with little work because there's a framework and a foundation. The clean data model and MVC framework regularly make incremental improvements relatively straightforward.

All of this is what makes building a startup both fun and challenging. And working with dragons (some days I can't believe they pay me to do this).

What's Next?

Meeting Planner's made tremendous progress the past few months. I'm beginning to experiment with WeFunder based on the implementation of the SEC's new crowdfunding rules. Please consider following our profile. I hope to write about this more in a future tutorial.

And certainly, the app still has a lot of shortcomings—please be sure to post your feedback in the comments or open a support ticket.

I hope you've enjoyed this episode. Watch for upcoming tutorials in our Building Your Startup With PHP series—there's still polish work ahead but also more big features.

Please feel free add your questions and comments below; I generally participate in the discussions. You can also reach me on Twitter @reifman directly.

Related Links


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code