Menerima Notifikasi untuk Pesan yang berhasil Dikirim dan Gagal

Contents
[ ]

Ketika Anda ingin mendapatkan notifikasi pengiriman untuk pesan yang berhasil dan yang gagal, Anda dapat menggunakan operator pipe (|) untuk DeliveryNotificationOptions properti dari MailMessage kelas. Potongan kode berikut menunjukkan cara menerima notifikasi untuk pesan yang berhasil dikirim dan yang gagal.

// Create the message
MailMessage msg = new MailMessage();
msg.setFrom(MailAddress.to_MailAddress("sender@sender.com"));
msg.setTo(MailAddressCollection.to_MailAddressCollection("receiver@receiver.com"));
msg.setSubject("the subject of the message");

// Set delivery notifications for success and failed messages and Add the MIME headers
msg.setDeliveryNotificationOptions(DeliveryNotificationOptions.OnSuccess | DeliveryNotificationOptions.OnFailure);
msg.getHeaders().add("Read-Receipt-To", "sender@sender.com");
msg.getHeaders().add("Disposition-Notification-To", "sender@sender.com");

// Send the message
SmtpClient client = new SmtpClient("host", "username", "password");
client.send(msg);