If you want to warn customers about their email address you can edit what I have done:
/plugins/order/views/templates/standard/main_signup.pdt
Find:
<?php
echo $this->Html->ifSet($message);
?>
add this above it:
<div class="message_box">
<ul>
<li class="info">
<a href="#" class="cross_btn">×</a>
<p>
If you are paying by PayPal, please sign up with your email address as that will record the payment and activate your service.<br />
If you don't wish to use your PayPal account email address, please beware that there might be a little delay.<br />
This will be fixed soon, and we apologies for the inconvenience this may cause.</p>
</li>
</ul>
</div>
Shows a little message on sign up when placing a order.