Editing Form Emails and Title Tags

Permalink
In C5 5.x, I used to add these lines of code to config/site.php

define('PAGE_TITLE_FORMAT', ' %2$s :: %1$s');
define('EMAIL_DEFAULT_FROM_ADDRESS', 'do-not-reply@example.org');
define('FORM_BLOCK_SENDER_EMAIL', 'do-not-reply@example.org');

This would change the order of the title tag to page name followed by site name and would have the form submissions come from the donotreply email address.

How do I accomplish the same in C5 8?

kreative