I am able to send an email with variables in the email message but I am not able to add line breaks to the message. I have tried everything that I have been able to find online. I am using a form to generate an email that creates a help desk ticket. I don't think the help desk will except HTML email.
$rname=$_POST["rname"];
$fname=$_POST["fname"];
$lname=$_POST["lname"];
$supervisor=$_POST["supervisor"];
$phone=$_POST["phone"];
$pforward=$_POST["pforward"];
$email=$_POST["email"];
$eforward=$_POST["eforward"];
$eddate=$_POST["eddate"];
$trdate=$_POST["trdate"];
$description=$_POST["description"];
$this->email->to('test@test.gov');
$this->email->subject('An Employee Access Termination Request has been Submitted');
$this->email->message(' Requestor Name: ' .$rname. ' Employee First Name: ' .$fname. ' Employee Last Name: ' .$lname.' Supervisor Name: '.$supervisor.' Phone: '.$phone. ' Phone Forward: '.$pforward. '
Email: '.$email. ' Email Forward: '.$eforward. ' Employee Disconncet Date: ' .$eddate. ' Technology Return Date: ' .$trdate. '
Special Instructions: ' .$description .= "Please remove access from any other systems such as KLAS Evergreen LIMS and or the Drupal WebSites");
won't work. Newlines will thought. – NaeiKinDus Jun 03 '16 at 17:58
` tags anywhere... – Mike Jun 03 '16 at 17:59
, again, a wild guess... OP didn't really provide us with details :) – NaeiKinDus Jun 03 '16 at 18:00