|
[Date Index]
[Thread Index]
[Author Index]
Receive e-mails with Mathematica 8
- To: mathgroup at smc.vnet.net
- Subject: [mg122174] Receive e-mails with Mathematica 8
- From: ADL <alberto.dilullo at tiscali.it>
- Date: Tue, 18 Oct 2011 07:41:46 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
Mathematica allows to send programmatically e-mails with a code like
below:
SendMail[
"To" -> "<email address>",
"Subject" -> "Mathematica Message",
"From" -> "<email address>",
"Server" -> "smtp.gmail.com",
"PortNumber" -> 587,
"UserName" -> "<user>",
"Password" -> "<pwd>",
"EncryptionProtocol" -> "StartTLS",
"ReplyTo" -> "<email address>",
"Body" -> "<email body>"
];
I was wandering if anybody has a method suitable to programmatically
receive emails, perhaps downloading attachments.
In particular, I would be interested in checking if an e-mail account
has received an e-mail form a specific sender and, in that case,
download and process the attachments.
Any idea?
ADL
Prev by Date:
Export list to Excel without brackets
Next by Date:
Re: Limit of nested function
Previous by thread:
Re: Export list to Excel without brackets
Next by thread:
Low CPU usage
|