Hi, I have created a mailitem and managed to send it using the outlook win32::ole api: $mail = new Win32::OLE('Outlook.Application'); $item = $mail->CreateItem(0); $item->{'Subject'} = "This is a test"; $item->{'To'} = "mccoyga\@1fssg.usmc.mil"; $item->{'Body'} = "Here is the meat of the message"; $item->Send(); I even succeded to add attachments. I'm trying to change some more complex things like : 1. changing the attachment format (mime / binhex / uuencode) 2. too choose one of my accounts that I have and not the default one.... How can I do it ??? Whith what properties/objects/methods ???