Your problems are likely to be with enumerating/indexing the accounts collection, which is slightly less convenient from Delphi then what you are used to in VBA.
I'll post some example code below. For brevity and pastability, I've used OleVariants, and declared olMailItem locally. In production code, make sure to use early binding in stead.
Also, good look dodging all the security warnings Outlook throws when automating it like this.
const
olMailItem = 0;
var
application: OleVariant;
mailItem: OleVariant;
begin
application := getActiveOleObject( 'Outlook.Application' );
mailItem := application.createItem( olMailItem );
mailItem.recipients.add( 'someone@somewhere.com' );
mailItem.subject := 'This is a subject';
mailItem.body := 'StackOverflow... the best time to hang out at christmas.';
// This line allows you to pick any account by name
mailItem.sendUsingAccount := application.session.accounts.item( 'some account' );
mailItem.send;
end;