diff --git a/app/views/integrations/index.html.erb b/app/views/integrations/index.html.erb
index d200b12c..be2a5a0c 100644
--- a/app/views/integrations/index.html.erb
+++ b/app/views/integrations/index.html.erb
@@ -12,6 +12,18 @@
Do you have one of your own to add? Tell us about it in our Tips and Tricks forum
and we may include it on this page in a future versions of Tracks.
+
+Integrated email/SMS receiver
+
+If Tracks is running on the same server as your mail server, you can use the integrated mail handler built into tracks. Steps to set it up:
+
+You can also use the Rich Todo API to send in tasks like "do laundry @ Home" or "Call Bill > project X". The subject of the message will fill description, context, and project, while the body will populate the tasks's note.
+
+
Add an Action with Applescript
This is a simple script that pops up a dialog box asking for a description, and then sends that to Tracks with a hard-coded context.
diff --git a/app/views/preferences/edit.html.erb b/app/views/preferences/edit.html.erb
index 796cd8ce..4b1c3b5f 100644
--- a/app/views/preferences/edit.html.erb
+++ b/app/views/preferences/edit.html.erb
@@ -20,7 +20,7 @@
verbose action descriptor: when true, show project/context name in action listing; when false show [P]/[C] with tool tips
mobile todos per page: the maximum number of actions to show on a single page in the mobile view
From email: the email address you use for sending todos as email or SMS messages to your Tracks account
- Message context: the context to which tasks sent in via email or SMS should be added
+ Default email context: the context to which tasks sent in via email or SMS should be added
diff --git a/app/views/preferences/index.html.erb b/app/views/preferences/index.html.erb
index 81b0edf0..05c90a86 100644
--- a/app/views/preferences/index.html.erb
+++ b/app/views/preferences/index.html.erb
@@ -29,7 +29,7 @@
Verbose action descriptors: <%= prefs.verbose_action_descriptors %>
Actions per page (Mobile View): <%= prefs.mobile_todos_per_page %>
From email: <%= prefs.sms_email %>
- Message context: <%= prefs.sms_context.nil? ? "None" : prefs.sms_context.name %>
+ Default email context: <%= prefs.sms_context.nil? ? "None" : prefs.sms_context.name %>
<%= link_to "Edit preferences »", { :controller => 'preferences', :action => 'edit'}, :class => 'edit_link' %>