|
|
Can MATLAB send a Mac email?
The subject line pretty much says it all. Is there a way to get MATLAB to send an email using the Mac mail program?
|
|
0
|
|
|
|
Reply
|
the
|
7/8/2010 1:20:24 PM |
|
"the cyclist" <thecyclist@gmail.com> wrote in message <i14jan$gdq$1@fred.mathworks.com>...
> The subject line pretty much says it all. Is there a way to get MATLAB to send an email using the Mac mail program?
You can access OS X's Action Script using the "osascript" unix command. Just call that from Matlab. I don't have a Mac handy to test this atm, but it should be easy enough.
|
|
0
|
|
|
|
Reply
|
Joshua
|
7/8/2010 2:16:23 PM
|
|
Dear Cyclist,
> The subject line pretty much says it all. Is there a way to get MATLAB to send an email using the Mac mail program?
I assume, that this depends on the possibility to control the Apple program "mail" remotely. Perhaps an Apple newsgroup has more detailed knowledge.
Does SENDMAIL help you?
Jan
|
|
0
|
|
|
|
Reply
|
Jan
|
7/8/2010 2:33:05 PM
|
|
In article <i14jan$gdq$1@fred.mathworks.com>,
"the cyclist" <thecyclist@gmail.com> wrote:
> The subject line pretty much says it all. Is there a way to get MATLAB to
> send an email using the Mac mail program?
Yes, as Joshua said, use osascript to run an AppleScript. The script
might look something like
tell application "Mail"
set msg to make new outgoing message with properties {visible:true,
subject:"demo", content:"body of email"}
tell msg
make new to recipient with properties {name:"John Doe",
address:"jdoe@whatever.com"}
end tell
send msg
end tell
(This may be wrapped.)
--
Doug Schwarz
dmschwarz&ieee,org
Make obvious changes to get real email address.
|
|
0
|
|
|
|
Reply
|
Doug
|
7/10/2010 1:10:43 PM
|
|
|
3 Replies
246 Views
(page loaded in 1.699 seconds)
Similiar Articles: How to send out email thru "Microsoft Exchange Server"? - comp ...Send/Receive data through Ethernet - comp.soft-sys.matlab ... Can MATLAB send a Mac email? - comp.soft-sys.matlab... matlab How to send out email thru "Microsoft Exchange ... Is there a way to locate old emails I sent years ago? - comp.mail ...... comp.mail.misc Is there a way to locate old emails I sent years ago? - comp.mail ... If you see this text, it means that your E-mail or ... Can MATLAB send a Mac email ... sending mail through Outlook - comp.soft-sys.matlabHi, I came accross a small piece of code which allows one to send an email using Matlab, through Outlook. it was actually a solution to a question ... Sending trigger signal using parallel port - comp.soft-sys.matlab ...How to clear file input box in file upload control? - comp.sys.mac ... Sending trigger signal using parallel port - comp.soft-sys.matlab ..... Therefore, you can use the ... send email using Outlook opens new session each time I send an ...sending mail through Outlook - comp.soft-sys.matlab send email using ... Can't send messages via Thunderbird - comp.sys.mac.apps Can't send messages via Thunderbird - comp.sys ... Load csv file into MATLAB workspace on a Mac - comp.soft-sys ...-- Doug Schwarz dmschwarz&ieee,org Make obvious changes to get real email address. ... matlab for mac - comp.soft-sys.matlab Load csv file into MATLAB workspace on a Mac - comp ... Can't send messages via Thunderbird - comp.sys.mac.appssend email using Outlook opens new session each time I send an ... Can't send ... problems - comp.sys.mac.apps (2) See of other people using Apple's Mail.app can send you ... Inverse of Matrix crashes Matlab - comp.soft-sys.matlab... R2009a), but not with the Mac version Matlab ... "Mathias Magdowski" <no_email ... the command inv(1) crashes MATLAB. > > What can I do to solve this problem? Please send ... How to open Outlook Express in java code - comp.lang.java.gui ...... When i develope the aplication by swing,i want to open outlook express to send email and ... import mail .iaf files from outlook express - comp.sys.mac.apps ... How to open ... MATLAB Mobile is available via Apple's Apps Store - comp.soft-sys ...MATLAB Mobile can be used wherever you have network access to the ... Assuming you are a Mac user, this sounds like a ... or other means to send output to other applications ... MATLAB - The Language of Technical ComputingMATLAB is a high-level technical computing language and interactive environment for algorithm development, data visualization, data analysis, and numerical computation. Matlab Utilities for Mac OS X - Penn State Department of ...(As an aside, if you add "Custom Language Preferences" for "Matlab", you can assign ... I have not tested it on an Intel based Mac. Send me an email if you have any problems ... 7/23/2012 6:51:54 AM
|
|
|
|
|
|
|
|
|