Using sendmail how can I send the value that are stored in the workspaces explain me with an example
Show older comments
I am using "sendmail" in matlab after "setpref" I need to attach the matrix values that have been calculated and stored in the workspace I need to send them to another person someone please help me to send the workspace values to another person using "sendmail" with an example
Accepted Answer
More Answers (2)
Azzi Abdelmalek
on 18 Jan 2013
If you you have one matrix you can send your matrix as a text message
a=rand(4)
message=cellstr(num2str(a))
sendmail({his_address,your_adress},'Object',message)
Bharath Kote
on 8 Dec 2017
0 votes
how can i send an email through matlab
Categories
Find more on Web Services in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!