You can change the default configuration of OssnMail. OssnMail uses phpmailer so you can add paramaters from phpmailer. One of the example for this is SMTP component.
~~~
<?php
function ossn_com_smtp_init() {
ossn_add_hook('email', 'config', 'ossn_smtp', 1);
}
function ossn_smtp($hook, $type, $mail, $return) {
//$mail contain the default phpmailer/OssnMail object
$mail->IsSMTP();
$mail->SMTPAuth = true;
//$mail->SMTPDebug = false;