www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/SendEmailFromSystemBrowserExample.m

    %% Send Email from System Browser
% Send an email from your system browser's default mail application using 
% the |mailto:| URL scheme.

%%
% To run this example, replace the value for |email| with a valid email address.
email = 'myaddress@provider.ext';
url = ['mailto:',email];
web(url)