일부 이미지가 포함 된 전자 메일을 보내고 싶습니다. 이 이미지를 첨부 파일로 전자 메일에 첨부해야한다고 생각하지만 메일 내용에 첨부 된 이미지는 어떻게 사용할 수 있습니까? MAIL메일 콘텐츠에 이미지를 표시하려면 어떻게해야합니까?
WebMail.SmtpServer = "my.smtp.server";
WebMail.Send(
clientEmail,
subject,
"<html><head></head><body><img src='???' /></body></html>",
myEmail,
null,
new List<string>() { "path" },
true
);
내가 src
으로 작성해야 무엇 보내기
CODE?
도움을 주시면 감사하겠습니다.
가능한 중복 (http://stackoverflow.com/questions/4312687/how-to-embed-images-in [이메일에 이미지를 삽입하는 방법] -email) –