Contributed by Roger
on Sep 26, 2003 at 03:41 UTC
Q&A
> mail and news
Answer: How do I send E-mail via Microsoft exchange server from my Perl Program? contributed by Roger To send E-mail via the Microsoft exchange server, you need to use the MAPI interface. I have created an example below to send Email via exchange server:
use Win32::OLE;
use strict;
# Create a new MAPI session
my $session = Win32::OLE->new("MAPI.Session")
or die "Failed to create a new MAPI Session!";
# Logon to server
my $res = $session->Logon("roger", "letmepass");
die "Could not log on to exchange server!" if ($res);
# Create a new message
my $msg = $session->Outbox->Messages->Add();
# Add the recipient and resolve the address
my $recipient = $msg->Recipients->Add();
$recipient->{Name} = "someone@somewhere.com";
$recipient->Resolve();
# Add your text
$msg->{Subject} = "Email Test";
$msg->{Text} = qq/
Email test ....
will this work?
Regards
Roger
/;
# Send the email
$msg->Update();
$msg->Send(0, 0, 0);
# Log off
$session->Logoff();
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|