Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #109047

Re: Setting Return-Path in email

From dieter <dieter@handshake.de>
Newsgroups comp.lang.python
Subject Re: Setting Return-Path in email
Date 2016-05-24 09:23 +0200
Message-ID <mailman.47.1464074614.20402.python-list@python.org> (permalink)
References <69c455ff-0fbd-42a5-a3fb-4ad0b89ed48e@googlegroups.com> <87d1ob2a34.fsf@handshake.de>

Show all headers | View raw


ragav s <raxmic@gmail.com> writes:
> How can i add different Return-path and fromid in python.i have pasted the below code for preview

Note that there are two different return paths associated with an
email exchange: one on the protocol level (SMPT - RFC821);
the other at the message level.

The one on the protocol level is used for reports about delivery
problems; the one at the message level is used for replies.

You specify the protocol level return path as "from_addr" in your
call to "smpt.sendmail". The message level return path is
usually defined by the "from:" message header and can be overridden
by the "reply-to" message header.

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Setting Return-Path in email ragav s <raxmic@gmail.com> - 2016-05-23 01:39 -0700
  Re: Setting Return-Path in email Vincent Vande Vyvre <vincent.vande.vyvre@telenet.be> - 2016-05-23 11:11 +0200
  Re: Setting Return-Path in email dieter <dieter@handshake.de> - 2016-05-24 09:23 +0200

csiph-web