displaying a date variable in an email
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
AA
am 30 Jul. 2016
Kommentiert: Azzi Abdelmalek
am 30 Jul. 2016
I got a variable DATE=23.03.1955 in Matlab. I want this variable to be displayed in the subject field of the email or the text message. Please help
if true
% code
end
saveas( gcf, 'XXX', 'jpg' );
UserName = 'XXX@gmail.com';
passWord = 'XXX';
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');
sendmail('XXXXX@gmail.com',...
'XXX','Test message',...
{'XXX.jpg'});
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 30 Jul. 2016
DATE='23.03.1955'
sendmail('XXXXX@gmail.com',Date,'Test message','XXX.jpg');
3 Kommentare
Azzi Abdelmalek
am 30 Jul. 2016
If the date is the current date, write:
Date=datestr(now,'dd.mm.yyyy')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!