반응형
c# 으로 메일을 발송할 경우 MailMessage 클래스를 사용하여 발송할 수 있습니다.
HTML 로 본문을 만들어 발송할때 이미지는 특정 URL 의 이미지를 연결하거나 Attachment 로 포함 할 수 있습니다.
C# MailMessage message = new MailMessage(from, to); message.IsBodyHtml = true; message.Subject = "제목"; message.Body = "메일본문 html"; message.Attachments.Add(new Attachment(@"C:\images\image001.png")); //이미지 첨부
|
Mail 본문 <img border='0' width='30' height='30' id="Picture 2" src="cid:image001.png" /> |
이미지 파일명과 cid 를 동일하게 해주면 됩니다.
반응형
'IT > C#' 카테고리의 다른 글
Globalization (0) | 2023.03.24 |
---|---|
Dapper with MySQL (0) | 2023.03.15 |
Cannot find compilation library location for package 'Microsoft.NETCore.App' (0) | 2018.12.20 |
.NET Core IIS 구성하기 (0) | 2018.12.19 |
숫자 (금액) 콤마 표시하기 (0) | 2018.07.03 |