On Wed, Sep 22, 2010 at 07:09:44PM -0300, Alexandre Pires wrote:

> Thanks Viktor, but how can I set envelop sender address in postfix ?

With SMTP:

        EHLO <clientname>
        MAIL FROM:<envelope-sen...@example.com>
        RCPT TO:<recipie...@example.net>
        RCPT TO:<recipie...@example.org>
        DATA
        Message-Headers:

        Message Body
        .

On the command-line:

    sendmail -f envelope-sen...@example.com -i -- \
        recipie...@example.net recipie...@example.org < message-source-file

-- 
        Viktor.

Reply via email to