diff --git bp-messages/bp-messages-template.php bp-messages/bp-messages-template.php
index 80d2ba5..2137c25 100644
--- bp-messages/bp-messages-template.php
+++ bp-messages/bp-messages-template.php
@@ -239,6 +239,26 @@ function bp_message_thread_excerpt() {
 		return apply_filters( 'bp_get_message_thread_excerpt', strip_tags( bp_create_excerpt( $messages_template->thread->last_message_content, 75 ) ) );
 	}
 
+/**
+ * Echo the thread's last message content
+ *
+ * @since BuddyPress (1.9)
+ */
+function bp_message_thread_content() {
+	echo bp_get_message_thread_content();
+}
+	/**
+	 * Get the thread's last message content
+	 *
+	 * @since BuddyPress (1.9)
+	 * @return string The raw content of the last message in the thread
+	 */
+	function bp_get_message_thread_content() {
+		global $messages_template;
+
+		return apply_filters( 'bp_get_message_thread_content', $messages_template->thread->last_message_content );
+	}
+
 function bp_message_thread_from() {
 	echo bp_get_message_thread_from();
 }
