How can I send out polling place information?

Daisychain's integration with the DNC's iwillvote.com lets you easily insert polling place information for US elections into your messages.  To send out polling place information using the Dais

To send out polling information, you can use variables when composing your message in Step 2 of the Campaign Creation process. 

The key variables that are most commonly used are:

  • Polling Place Name: {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].location_name }}
  • Polling Place Address: {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].location_name }}
  • Polling Place Hours: {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].dates_hours }}.

To put it all together, below are few example messages that include variables.

Sample Message - Election Day

Hey {{ person.first_name }}, 📅 Election Day is Tuesday, November 5th. 

{% if person.primary_address.dnc_will_vote and person.primary_address.dnc_will_vote.locate %} Here's all the info you need to vote in {{ person.primary_address.locality }}:

🗳️ Your polling place is {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].location_name }}.

📍 Address: {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].address_line_1 }}, {{ person.primary_address.dnc_will_vote.locating.polling_locations[0].city }}, {{ person.primary_address.dnc_will_vote.locating.polling_locations[0].state_code }} {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].zip }}

🕒 Polls are open from {{ person.primary_address.dnc_will_vote.locate.polling_locations[0].dates_hours }}.

{% else %}

🗳️ Please check your polling location at https://iwillvote.com. {% endif %}

Using the code above will output a message that looks something like this:

Sample Message - Early Vote

Hey {{ person.first_name }}, Election Day is Tuesday, November 5th, but you might be able to vote early! 

{% if person.primary_address.dnc_will_vote and person.primary_address.dnc_will_vote.locate %}

Based on our records, here's all the info you need for early voting in {{ person.primary_address.locality }}:

🗳️ Your early voting location is {{ person.primary_address.dnc_will_vote.locate.early_vote_locations[0].location_name }}.

📍 Address: {{ person.primary_address.dnc_will_vote.locate.early_vote_locations[0].address_line_1 }}, {{ person.primary_address.dnc_will_vote.locate.early_vote_locations[0].city }}, {{ person.primary_address.dnc_will_vote.locate.early_vote_locations[0].state_code }} {{ person.primary_address.dnc_will_vote.locate.early_vote_locations[0].zip }}

🕒 Early voting hours: {{ person.primary_address.dnc_will_vote.locate.early_vote_locations[0].dates_hours }}.

🗳️ Please double-check to confirm your voting info here: https://iwillvote.com

{% else %}

🗳️ You can get all the info you need to vote here:: https://iwillvote.com.
{% endif %}

Using the code above will output a message that looks something like this:

 

 

A note on data availability: While we expect to have election day polling place data available for 50 US states, some states won't have information until closer to the election. Additionally, some states don't have early voting and/or vote-by-mail at all. You can check this this spreadsheet for more info on state-by-state data availability. 

Accurate Addresses Needed: We can't send out accurate polling place information to people in your Daisychain account unless they have accurate addresses. If the address information is missing, malformed, or inaccurate, they can't be geocoded, and Daisychain won't be able to determine their polling place.