The easiest darn feature request ever (add your suggestions!)

I’m even giving you the code, assuming someone there still knows “C”. Just put in the right string names:

#include <string.h>  /* just in case */
if (strlen(order_notes) != 0)
  {
  strcpy(email_notification_subject, "Twisted Oak Online Order ID with Order Notes: ");
  }
else
  {
  strcpy(email_notification_subject, "Twisted Oak Online Order ID: ");
  }
2 Likes

On orders that don’t go to fulfillment - especially event tickets - I can’t always look at each one to see if there are order notes. And for orders that do go to fulfillment I’d like to increase my chance of catching notes sooner. So if you change the subject line when there are notes I can flag them.

@Karson suggested there might be other things to string into the subject of an order notification. I came up with the following, please chime in and agree or disagree with these and add your own:

  • whether it is a pickup order (which you have to complete in order for it to show up as a pickup on the POS flag)

  • two letter state abbreviation (might help with weather holds etc.)

  • if the shipping is other than ground (this one is urgent, beat the 3:30 UPS pickup!)

What else?