Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

email::outlook::message(3pm) [debian man page]

Email::Outlook::Message(3pm)				User Contributed Perl Documentation			      Email::Outlook::Message(3pm)

NAME
Email::Outlook::Message.pm - Read Outlook .msg files SYNOPSIS
use Email::Outlook::Message; my $msg = new Email::Outlook::Message $filename, $verbose; my $mime = $msg->to_email_mime; $mime->as_string; DESCRIPTION
Parses .msg message files as produced by Microsoft Outlook. METHODS
new($msg, $verbose) Parse the file pointed at by $msg. Set $verbose to a true value to print information about skipped parts of the .msg file on STDERR. to_email_mime Output result as an Email::MIME object. BUGS
Not all data that is in the .msg file is converted. There are some parts whose meaning escapes me, although more documentation on MIME properties is available these days. Other parts do not make sense outside of Outlook and Exchange. GPG signed mail is not processed correctly. Neither are attachments of type 'appledoublefile'. It would be nice if we could write .MSG files too, but that will require quite a big rewrite. AUTHOR
Matijs van Zuijlen, "matijs@matijs.net" COPYRIGHT AND LICENSE
Copyright 2002, 2004, 2006--2010, 2012 by Matijs van Zuijlen This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-16 Email::Outlook::Message(3pm)

Check Out this Related Man Page

Email::Sender(3pm)					User Contributed Perl Documentation					Email::Sender(3pm)

NAME
Email::Sender - a library for sending email VERSION
version 0.110005 SYNOPSIS
my $message = Email::MIME->create( ... ); # produce an Email::Abstract compatible message object, # e.g. produced by Email::Simple, Email::MIME, Email::Stuff use Email::Sender::Simple qw(sendmail); use Email::Sender::Transport::SMTP qw(); use Try::Tiny; try { sendmail( $message, { from => $SMTP_ENVELOPE_FROM_ADDRESS, transport => Email::Sender::Transport::SMTP->new({ host => $SMTP_HOSTNAME, port => $SMTP_PORT, }) } ); } catch { warn "sending failed: $_"; }; OVERVIEW
Email::Sender replaces the old and sometimes problematic Email::Send library, which did a decent job at handling very simple email sending tasks, but was not suitable for serious use, for a variety of reasons. Most users will be able to use Email::Sender::Simple to send mail. Users with more specific needs should look at the available Email::Sender::Transport classes. Documentation may be found in Email::Sender::Manual, and new users should start with Email::Sender::Manual::QuickStart. IMPLEMENTING
Email::Sender itelf is a Moose role. Any class that implements Email::Sender is required to provide a method called "send". This method should accept any input that can be understood by Email::Abstract, followed by a hashref containing "to" and "from" arguments to be used as the envelope. The method should return an Email::Sender::Success object on success or throw an Email::Sender::Failure on failure. AUTHOR
Ricardo Signes <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo Signes. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-03-06 Email::Sender(3pm)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

mailx -s not working right

I have set up in Solaris to email me and I received emails on the OS level. However, I don't get the mail in my MS Outlook. Please advise. Thanks in advance. (3 Replies)
Discussion started by: simt
3 Replies

2. UNIX for Advanced & Expert Users

Unix emails in Windows

Hello, How can I convert Unix emails w/attachments to a Outlook PST file? (3 Replies)
Discussion started by: dti650
3 Replies

3. Windows & DOS: Issues & Discussions

Outlook express

Where is the file where all my e-mails are stored?I know theres one file with everything in it. (3 Replies)
Discussion started by: perleo
3 Replies

4. Shell Programming and Scripting

Outlook is getting hanged - sendmail

Hi, Problem with Sendmail When I receive the mail in my outlook, (sent using sendmail ) , Outlook is not working properly( its getting hanged).I am using the script which is available in this forum. The following are the headers that are getting generated . Sendmail is running on SunOS... (5 Replies)
Discussion started by: Srini75
5 Replies

5. Solaris

mailx command with headers

I am having trouble with the mailx command. I have looked many places but can't find the answer. A user at work wants his application to send an email with the Outlook Importance set to high. It looks like I need to modify the MIME headers in order to accomplish this. Is this possible... (5 Replies)
Discussion started by: rgremill
5 Replies

6. Post Here to Contact Site Administrators and Moderators

Message Never got replied.

Hi, I had put up a post a couple of days back. I haven't got any replies yet. Now it's become old so the chances of it been seen by anybody is very less let alone answering it. Please tell me what I should do now? Should I create a new thread with the same contents again? Regd, M. (5 Replies)
Discussion started by: mahatma
5 Replies

7. Windows & DOS: Issues & Discussions

Help needed with backing up Outlook email folders and settings

I need to upgrade from Windows Me to Windows Xp, anyone can please tell me how can I backup everything in Outlook Express for an easy restore after reinstalling Windows? (3 Replies)
Discussion started by: Saanddra
3 Replies

8. Shell Programming and Scripting

awk - print file contents except regex

Hello, I have a file which has user information. Each user has 2 variables with the same name like Email: testuser1 Email: testuser1@test.com Email: testuser2 Email: testuser2@test.com My intention is to delete the ones without the '@' symbol. When I run this statement awk '/^Email:/&&!/@/'... (6 Replies)
Discussion started by: rmsagar
6 Replies

9. Shell Programming and Scripting

mailx to set priorities

Hi, can we set priority to mails which I have sent using mailx? Is there any options in mailx for that? I am receiving mails on Microsoft Outlook (4 Replies)
Discussion started by: Deei
4 Replies

10. UNIX for Advanced & Expert Users

Sendmail not showing recipients

I've figured out to do a mail merge with /usr/lib/sendmail which is extremely helpful as it is lightning fast compared to an Outlook mail merge which pretty much locks up my machine while it struggles to push out the emails. I figured out how to send html emails, with dynamic variables, and how... (8 Replies)
Discussion started by: MaindotC
8 Replies

11. UNIX and Linux Applications

Problem recieving files from net2ftp

I have a very strange problem occurring with a Net2FTP site. I've setted up a VSFTPD with SSL/TLS enabled and it works just fine for almos all archives, however, if someone put a .msg file (Outlook messages), if I download via Net2FTP, the file arrives different (different MD5) and it doesn't... (3 Replies)
Discussion started by: Zarnick
3 Replies

12. Shell Programming and Scripting

Another mailx question

Hi I am trying to send an html file as an attachment from AIX server and recieve it using Outlook 2007 client. I tried every possible command, such as: uuencode file file | mailx -s "subject" me@mydomain.com uuencode -m file file | mailx -s "subject" me@mydomain.com All of them give me: ... (6 Replies)
Discussion started by: nimo
6 Replies

13. Solaris

Which hammer do I use?

So, I've got a email account that I need to monitor for a particular subject line and\or that contains a specific string in the body. Normally, I'd use Outlook for this but in this case, it will only work if Outlook is running. Those particular rules aren't supported server side. So, I have... (5 Replies)
Discussion started by: DustinT
5 Replies

14. Linux

Exchange Email Client for Linux

About 5 years ago I used to use Evolution for its ability to interact with my companies Exchange 2003 server. I was wondering what Exchange compliant email clients you are actually using with either Exchange 2007 or 2010? FYI I've tried Thunderbird and it just sucks. (5 Replies)
Discussion started by: binary-ninja
5 Replies

15. Shell Programming and Scripting

UNIX mail Format issue : Outlook 2007 and 2013

Hi, I prepare one backup report which drop mail with backup report. Same report looks different in outlook 2013. e.g : In outlook 2013 ( its a dummy example only ) : Server Instance Database Backup Time Status ------------------- --------- --------- -------------- ----------------------... (5 Replies)
Discussion started by: niteshtheone
5 Replies