diff --git a/modules/redhen_contact/includes/redhen_contact.entity.inc b/modules/redhen_contact/includes/redhen_contact.entity.inc
index 296dbbf..6b341a2 100644
--- a/modules/redhen_contact/includes/redhen_contact.entity.inc
+++ b/modules/redhen_contact/includes/redhen_contact.entity.inc
@@ -361,24 +361,3 @@ function redhen_contact_property_user_get(RedhenContact $contact, array $options
     return entity_load_single('user', $contact->uid);
   }
 }
-
-/**
- * Entity metadata property getter for default email.
- *
- * @param RedhenContact $contact
- * @param array $options
- * @param $property_name
- * @param $entity_type
- *
- * @return string
- */
-function redhen_contact_property_email_get(RedhenContact $contact, array $options, $property_name, $entity_type) {
-  if (!empty($contact->{REDHEN_CONTACT_EMAIL_FIELD})) {
-    foreach ($contact->{REDHEN_CONTACT_EMAIL_FIELD}[LANGUAGE_NONE] as $email) {
-      if ($email['default']) {
-        return $email['value'];
-      }
-    }
-  }
-  return '';
-}
diff --git a/modules/redhen_contact/redhen_contact.module b/modules/redhen_contact/redhen_contact.module
index 3abcd9d..607bc69 100644
--- a/modules/redhen_contact/redhen_contact.module
+++ b/modules/redhen_contact/redhen_contact.module
@@ -810,3 +810,24 @@ function redhen_contact_user_view($account, $view_mode, $langcode) {
     $account->content['redhen_contact'] = redhen_contact_view($contact, $view_mode);
   }
 }
+
+/**
+ * Entity metadata property getter for default email.
+ *
+ * @param RedhenContact $contact
+ * @param array $options
+ * @param $property_name
+ * @param $entity_type
+ *
+ * @return string
+ */
+function redhen_contact_property_email_get(RedhenContact $contact, array $options, $property_name, $entity_type) {
+  if (!empty($contact->{REDHEN_CONTACT_EMAIL_FIELD})) {
+    foreach ($contact->{REDHEN_CONTACT_EMAIL_FIELD}[LANGUAGE_NONE] as $email) {
+      if ($email['default']) {
+        return $email['value'];
+      }
+    }
+  }
+  return '';
+}
