Question
How do I send to contacts who live within an "x" mile radius of a given Zip code?
Answer
\There is no automated way to determine a mile radius of a Zip Code. You would need to have a way to determine how many miles a contact is from some location, and then import the number of miles into a custom field. To do this:
- Create a Custom Field:
- Go to SEGMENTATION > CUSTOM FIELDS.
- Click Add new custom field.
- Enter a Field Name (e.g. "miles_from").
- Set the Type to 'Number'.
- Enter an optional Description.
- Click CREATE.
- Import your values into the new custom field.
- Create an Advanced Segmentation Rule, where the zip and miles_from are example values:
- Go to LISTS > SEGMENTATION > CREATE ADVANCED RULE.
- Enter a Rule Name.
- Enter an optional Description.
- Enter the following Commands, then click CREATE:
zip = 12345 and custom_miles_from < 5
You must either create a separate Segmentation Rule for each [Zip + Radius] possibility, or create a complex Command set, such as:
(zip = 98011 and custom_miles_from < 5) or
(zip = 98012 and custom_miles_from < 5) or
(zip = 98019 and custom_miles_from < 10) or
(zip = 98020 and custom_miles_from < 10)