PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Form submission creates tagged note in Evernote

  1. lmcurtis
    Member

    I have a form which includes checkboxes. One of the notifications for the form goes to an Evernote email address, so that a note is created whenever a form is submitted. The checkboxes have values which create tags in the note at Evernote. Everything is working well, except that when multiple checkboxes are checked, only the final checkbox value is tagged in Evernote, because the merge tag for that field outputs commas to separate the value of each checkbox:
    {Please check all that apply -:4:value}
    The commas block Evernote from recognizing all the tags so that it only catches the last one.

    How can I edit the output so that the values are separated only by spaces instead of a comma plus a space?

    Posted 12 years ago on Friday January 27, 2012 | Permalink
  2. lmcurtis
    Member

    I found it - in common.php on line 549 under the section
    //Replacing field variables
    I changed:
    $value = self::implode_non_blank(", ", $ary);
    to:
    $value = self::implode_non_blank(" ", $ary);

    Now the notification email sends the merge field values in a way Evernote can pick up as tags automatically.

    Posted 12 years ago on Friday January 27, 2012 | Permalink
  3. Great idea! Thanks for posting the fix as well.

    Posted 12 years ago on Monday February 6, 2012 | Permalink