I want to send a picture by email to an email address at "Outlook.com" using MATLAB
이전 댓글 표시
Hi
I want to send a specific picture to an email address using Matlab gui
I know how to browse and select a picture, but I want to send the picture that I selected to send it to any email.
Thanks :)
See attachment.
채택된 답변
추가 답변 (1개)
Ken Atwell
2014년 9월 6일
0 개 추천
You can use sendmail, though you will need to save the image to a temporary file (attachments can only be files).
댓글 수: 4
Image Analyst
2014년 9월 6일
You can but it needs to be in a file saved to disk rather than directly as a variable right out of the script. If you were to put an image variable into the body of the message it would look like gibberish, so it has to be an attachment. Attachments have to be files saved on your disk.
Abdullah
2014년 9월 7일
Ken Atwell
2014년 9월 11일
Trying using a function like imwrite to create a image file on disk, then attached it to the email as one of the parameters to sendmail.
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!