sending a graph via email automatically

when i create a plot, how can i send it automatically via my gmail account? how can i configure this?

Respuestas (1)

per isakson
per isakson el 25 de Dic. de 2014
Editada: per isakson el 25 de Dic. de 2014

1 voto

Search the FEX for sendmail gmail

4 comentarios

AA
AA el 26 de Dic. de 2014
I have configured my gmail but how do i attach the figure graph ( which was created by a function)
per isakson
per isakson el 27 de Dic. de 2014
Editada: per isakson el 27 de Dic. de 2014
Save it to at file and attach the file to the email.
AA
AA el 27 de Dic. de 2014
I am using the code below but the problem is that I do not know how I can attach a graph as a file in this code. DO you have any idea?
UserName = 'yourmail@gmail.com';
passWord = 'password';
setpref('Internet','E_mail',UserName);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',UserName);
setpref('Internet','SMTP_Password',passWord);
props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth','true');
props.setProperty('mail.smtp.socketFactory.class', ...
'javax.net.ssl.SSLSocketFactory');
props.setProperty('mail.smtp.socketFactory.port','465');
emailto = 'emailWhereToSend'; % recipient's email
sendmail(emailto, 'My Subject', 'My message');
per isakson
per isakson el 27 de Dic. de 2014
Editada: per isakson el 27 de Dic. de 2014
sendmail( recipients, subject, message, attachments )
attaches the files listed in the string or cell array attachments.
The fourth input argument, attachments, has been available at least a few Matlab releases back. Which release do you use?
AFAIK: With sendmail it is not possible show a picture in the mail itself (embedded in the message).

Iniciar sesión para comentar.

Etiquetas

Preguntada:

AA
el 25 de Dic. de 2014

Editada:

el 27 de Dic. de 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by