Edit admin controller file:
/admin/controller/pages/sale/order.php
Find:
$this->data['form']['notify'] = $form->getFieldHtml(array(
'type' => 'checkbox',
'name' => 'notify',
));
Add:
'value' => 1,
You will have:
$this->data['form']['notify'] = $form->getFieldHtml(array(
'type' => 'checkbox',
'name' => 'notify',
'value' => 1,
));