I've tried both:
PHP Code:
$newline = PHP_EOL;
retaining the variable in the code, and also replacing the variable at each instruction:
PHP Code:
$new_message = '[b][size="4"]' . $rev_title . '[/size][/b]' . PHP_EOL;
$new_message .= '[size="2"]' . $rev_author . '[/size]' . PHP_EOL;
$new_message .= '[i][size="2"]' . $rev_date . '[/size][/i]' . PHP_EOL . PHP_EOL;
$new_message .= '[b]' . $rev_initpara . '[/b]' . PHP_EOL . PHP_EOL;
$new_message .= $rev_message . PHP_EOL . PHP_EOL;
$new_message .= '[url="' . $rev_link . '"]Full Review Here[/url]' . PHP_EOL;
// and set it as the main message text from the editor as an all-in-one for processing by vBulletin core
$vbulletin->GPC['message'] = $new_message;
Both display the text PHP_EOL after the field values.