Skip to content

Commit 2caeed3

Browse files
Ranjith ParasuramanRanjith Parasuraman
Ranjith Parasuraman
authored and
Ranjith Parasuraman
committed
Improved content.
1 parent d27e220 commit 2caeed3

File tree

2 files changed

+24
-27
lines changed

2 files changed

+24
-27
lines changed

index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Survey recipients can add comments to their response.
3838

3939
### Easy unsubscribing
4040

41-
Recipients can opt-out of receiving surveys from an account by clicking unsubscribe link in footer of email. They can also opt out of Boolean surveys completely using the opt-out form in our website. You can unsubscribe recipients from specific surveys in your account using the [API](/docs/v1_unsubscribes.html).
41+
Recipients can opt-out of receiving surveys from an account by clicking unsubscribe link in footer of email. They can also opt-out of Boolean surveys completely using the opt-out form in our website. You can unsubscribe recipients from specific surveys in your account using the [API](/docs/v1_unsubscribes.html).
4242

4343
### Scheduling
4444

pages/overview/send_surveys.md

+23-26
Original file line numberDiff line numberDiff line change
@@ -8,85 +8,84 @@ permalink: send_surveys.html
88

99
### Basic survey settings
1010

11-
You will need to provide the following minimum settings to create a survey.
11+
Provide the following minimum settings to create a survey.
1212

1313
#### Sender name
1414

15-
Provide a name for your product/service. It is used in email sender name, subject and “alt text” of logo in email. Default email subject is “Quick feedback on _sender name_”.
15+
Provide a name to use for sender name of email.
1616

1717
#### Sender logo
1818

19-
Upload a easily identifiable logo of your product/service. It will be used in the header section of survey email.
19+
Provide a logo to add to the top of email.
2020

2121
#### Survey question
2222

23-
Provide the question to ask your users (max 60 characters).
23+
Provide the survey question (max 60 characters).
2424

2525
#### Positive answer
2626

27-
Provide the positive answer for your question (max 10 characters). This answer will have a green background in the survey email.
27+
Provide a positive answer (max 10 characters).
2828

2929
#### Negative answer
3030

31-
Provide the negative answer for your question (max 10 characters). This answer will have a red background in the survey email.
31+
Provide a negative answer (max 10 characters).
3232

3333
### Advanced survey settings
3434

3535
These settings are not mandatory. They have good defaults.
3636

3737
#### Survey name
3838

39-
A name for your survey. It will default to survey date_. It can be changed later.
39+
A name for your survey.
4040

4141
#### Email subject
4242

43-
The default subject is “Quick feedback on _sender name_”. You can change it to “Feedback on _keyword_ with _keyword_”. E.g. “Feedback on order with abcstores.com
43+
The default subject is “Quick feedback on _sender name_”. You can change it to “Feedback on _keyword_ with _keyword_”. E.g. “Feedback on order with abcstores.com"
4444

4545
#### Reply-to email address
4646

47-
Boolean will add this email address to the “reply-to header of survey email. If any of your users reply to survey email it will be sent to this address. Otherwise by default any reply to survey email will be rejected. We encourage you to add your customer support email address to here to get valuable feedback directly to your support inbox.
47+
Provide an email address to add to "reply-to" header of email. If not provided any reply to email will be rejected.
4848

4949
#### Time-zone
5050

51-
Select time-zone of your location. It will be used as basis for all dashboard reports. You can change it later. If you and your users are located in different time zones, then we suggest you use your time zone as it will suit your daily schedule.
51+
Select time-zone of for use in dashboard reports.
5252

5353
#### Send throttle (day)
5454

55-
It is not a good idea sending too many emails to a single user in the same survey. So Boolean throttles the number of emails an individual user (unique email address) gets in a day, week and month. Boolean will ignore any new survey requests for a throttled user. By default, a user will get maximum 1 email per survey per day. You can increase it to 2.
55+
Max number of emails a recipient will recieve in a day. Default is 1.
5656

5757
#### Send throttle (week)
5858

59-
By default, a user will get maximum 2 emails per survey per week. You can increase it up to 4.
59+
Max number of emails a recipient will recieve in a week. Default is 2.
6060

6161
#### Send throttle (month)
6262

63-
By default, a user will get maximum 3 emails per survey per month. You can increase it up to 6.
63+
Max number of emails a recipient will recieve in a week. Default is 3.
6464

6565
## Sending surveys
6666

67-
Once a survey is created you can immediately start sending survey emails. There are 2 ways to send surveys - sending from dashboard, sending through API.
67+
Surveys can be sent through the dashboard or the API.
6868

69-
### Sending surveys from dashboard
69+
### Sending surveys through dashboard
7070

71-
#### Send surveys by pasting email addresses
71+
#### Copy paste email addresses
7272

73-
You can quickly send surveys from within the dashboard. All you need is a list of your user’s email addresses.
7473
1. Go to “send surveys” section.
75-
2. Import email addresses by pasting them in comma separated format (max 1000 emails).
74+
2. Copy paste emails in comma separated format (max 1000 emails).
7675
3. You will be shown a preview of emails to which surveys will be sent. We will remove duplicates and emails which have already hit daily/weekly/monthly throttle limits. After verifying the list, you can send the surveys by clicking “send”.
7776

7877
#### Send surveys by importing emails through CSV file
7978

80-
You can send surveys by importing a list of emails through a CSV file. This method allows you to add properties for each email.
79+
This method allows you to add properties for each email.
8180
1. Go to “send surveys” section.
82-
2. Click the "upload" button to select CSV file from your computer.
81+
2. Click the "upload" button to select CSV file from your computer (max 1000 emails).
8382
3. We will validate the upload file for data errors. After successful validation you will see a "send surveys" button. Click the button to send surveys.
8483

8584
Some points to remember for CSV file:
8685
1. The first row should contain header for each column. Only email column is mandatory.
8786
2. Each property column's header should have property type and property name. For e.g. a string property "city" will should header as "S:city".
88-
3. You download a sample CSV file with headers for all survey properties by clicking "Download CSV template".
89-
4. Please refer [property data guidelines](/docs/v1_messages.html#property-data-types) for each property to fix validation errors. When a string property has number value use quotes.
87+
3. Refer to [property data guidelines](/docs/v1_messages.html#property-data-types) for each property to fix validation errors.
88+
4. When a string property has number value use quotes.
9089

9190

9291
### Sending surveys through API
@@ -95,7 +94,7 @@ Read [API documentation](/docs/v1_messages.html).
9594

9695
## Properties
9796

98-
You can add key-value pair meta data about as “properties” of a survey. Boolean supports six different types of properties - Number, String, Number set, String set, Date and Boolean. The table below explains each type of property.
97+
Add properties to each recipient to segment responses. We support six different types of properties - Number, String, Number set, String set, Date and Boolean. You can add maximum of 50 unique properties per survey.
9998

10099
|Property type|Examples|
101100
|-------------|--------|
@@ -107,8 +106,6 @@ You can add key-value pair meta data about as “properties” of a survey. Bool
107106
|Date|Order date, delivery date|
108107

109108

110-
You can send a maximum of 50 unique properties per survey. Adding properties will allow you to segment responses and find reasons for negative feedback. Please read API documentation for detailed guide on sending properties.
111-
112109
### Auto captured properties
113110

114111
We capture the following properties of survey response automatically.
@@ -122,7 +119,7 @@ We capture the following properties of survey response automatically.
122119

123120
## Unsubscribes
124121

125-
A user can opt to stop receiving surveys from all surveys of an account by clicking unsubscribe link in the email. You can also unsubscribe users from specific surveys in your account through the [/unsubscribes](/docs/v1_unsubscribes.html) endpoint in API.
122+
Recipients can opt-out of receiving surveys from an account by clicking unsubscribe link in footer of email. They can also opt-out of Boolean surveys completely using the opt-out form in our website. You can unsubscribe recipients from specific surveys in your account using the [API](/docs/v1_unsubscribes.html).
126123

127124
## Send limits
128125

0 commit comments

Comments
 (0)