如何在wp_mail函数上指定SMTP帐户?

I am developin a web site based in wordpress and we have Easy SMTP plugin configured with an SMTP account.

In adiction, I'm coding a plugin to this site. I need all emails been sended from one account, except the emails sended by my plugin.

Theese emails must have another sender (other smtp account). Both SMTP accounts will be in the same SMTP server.

Is this possible? Can I pass some header to wp_mail function to change the SMTP authentication account for a specific email send?

I don't see any documentation that helps me...

Thanks.

edit: I know that I can do something like:

$cabeceras .= 'From: Recordatorio <cumples@example.com>' . "
";

But i'm not sure that if this is a good method or if is recomendable doing it.