What is the correct syntax for a simple line break in a PHP mail text?
To create a line break in a PHP mail text, you can use the "\r\n" escape sequence. This sequence represents a carriage return followed by a line feed, which is commonly used for line breaks in text files. By including "\r\n" in your mail text, you can ensure that each line is displayed on a new line when the email is sent.
$mailText = "Hello, this is a message with a line break.\r\nThis is the next line.";