Frage

I have a little question. How can in python sending e-mail via smtp with flag, that the recipient opened the message?

War es hilfreich?

Lösung

According to http://en.wikipedia.org/wiki/Return_receipt you may choose either RFC-3798-compliant method with Disposition-Notification-To: <email> header or non-standard but widely used Return-Receipt-To: <email> header.

Technically your question is not about SMTP, because these headers are in the message itself, not in SMTP "envelope headers". As the first step you may form the message with all headers, including delivery status notification, and message body, using a preferred mail program (so called Mail User Agent).

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top