Book Image

CiviCRM Cookbook

Book Image

CiviCRM Cookbook

Overview of this book

CiviCRM is a web-based, open source, Constituent Relationship Management (CRM) software geared toward meeting the needs of non-profit and other civic-sector organizations.Organizations realize their mission via CiviCRM through contact management, fundraising, event management, member management, mass e-mail marketing, peer-to-peer campaigns, case management, and much more.CiviCRM is localized in over 20 languages including: Chinese (Taiwan, China), Dutch, English (Australia, Canada, U.S., UK), French (France, Canada), German, Italian, Japanese, Russian, and Swedish.CiviCRM Cookbook will enhance your CiviCRM skills. It has recipes to help you use CiviCRM more efficiently, integrate it with CMSs, and also develop CiviCRM.This book begins with recipes that help save time and effort with CiviCRM. This is followed by recipes for organizing data more efficiently and managing profiles.Then you will learn authentication and authorization and managing communication with contacts.Then you will be guided on using the searching feature and preparing reports. We will then talk about integrating Drupal and CiviCRM. You will also be taught to manage events effectively. Finally, learn about CiviCampaign, Civimember, and developing CiviCRM.
Table of Contents (19 chapters)
CiviCRM Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Allowing users to update information without logging in


Your users are busy people. Time is a commodity. You might be in a situation where you want to get users to provide you with data but they have to log in to your site to do it. The act of having to log in is a huge barrier to interaction. Luckily CiviCRM provides a way around this.

How to do it…

Using the CiviCRM checksum token in combination with a profile allows you to bypass the requirement to log in.

  1. Create a profile you wish to use. The profile contains all the fields of information that you want the user to complete.

  2. Make a note of the profile ID.

  3. Enable Profile Listings and Forms access for anonymous and authenticated users in your CMS.

  4. Now create a CiviMail mailing in the normal way.

  5. You now need to use the {contact.checksum} token and the {contact.contact_id} token to construct a link back to edit the profile you created:

    http://www.myorganization.org/civicrm/profile/edit?reset=1&gid=N&id={contact.contact_id}&{contact.checksum...