[ci skip] A tiny improvement in CI_Email
diff --git a/system/libraries/Email.php b/system/libraries/Email.php
index 3c3c49e..fac8a49 100644
--- a/system/libraries/Email.php
+++ b/system/libraries/Email.php
@@ -376,7 +376,13 @@
 	 *
 	 * @var	string[]
 	 */
-	protected $_priorities		= array('1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)');
+	protected $_priorities = array(
+		1 => '1 (Highest)',
+		2 => '2 (High)',
+		3 => '3 (Normal)',
+		4 => '4 (Low)',
+		5 => '5 (Lowest)'
+	);
 
 	// --------------------------------------------------------------------
 
@@ -1241,7 +1247,7 @@
 	{
 		$this->set_header('X-Sender', $this->clean_email($this->_headers['From']));
 		$this->set_header('X-Mailer', $this->useragent);
-		$this->set_header('X-Priority', $this->_priorities[$this->priority - 1]);
+		$this->set_header('X-Priority', $this->_priorities[$this->priority]);
 		$this->set_header('Message-ID', $this->_get_message_id());
 		$this->set_header('Mime-Version', '1.0');
 	}