0
누구나 C#에서 다음 작업을 수행 할 수 있습니다.webmatrix - Reply-To webmail.send header
WebMail.Send(to: customerEmail,
subject: "Booking enquiry from - " + customerEmail,
body: customerRequest
);
누구나 C#에서 다음 작업을 수행 할 수 있습니다.webmatrix - Reply-To webmail.send header
WebMail.Send(to: customerEmail,
subject: "Booking enquiry from - " + customerEmail,
body: customerRequest
);
를 사용하여 해결 :
var header = new[]{"Reply-To:[email protected]"};
WebMail.Send(to: customerEmail,
subject: "Booking enquiry from - " + customerEmail,
body: customerRequest,
additionalHeaders: header
);
additionalHeaders.Add("Reply-To: [email protected]");
는 다음 코드에 삽입 할 필요가