in reply to Re: charset and content transfer encoding with Win32::OLE
in thread charset and content transfer encoding with Win32::OLE
But I also should be able to modify the Content-Transfer-Encoding and the charset.my $mail = new Win32::OLE('Outlook.Application'); my $ol = Win32::OLE::Const->Load($mail); my $item = $mail->CreateItem(0); $item->{'To'} = "stam@walla.com"; $item->{'Subject'} = "important"; $item->{'BodyFormat'} = "olFormatHTML"; $item->{'HTMLBody'} = "<HTML><H2>The body of this message will appear +in HTML.</H2><BODY>Type the message text here. </BODY></HTML>";
|
|---|