Haroon
Haroon

Reputation: 31

How to send emails with a Return Path in .net 3.5

Can any one guide me on how i can send emails with a return path in ASP.net 3.5 / C# 3.5. I know this was possible few years back but now due to spoofing issues this is not possible. I have been looking on internet but no use. I want the emails if bounced, should reach my bounce mail box, which could be like [email protected].

Please guide. Really stuck ...

Best regards, Haroon

Upvotes: 3

Views: 1377

Answers (1)

Mike Keller
Mike Keller

Reputation: 615

I did a check on systemnetmail.com and found that you are not able to.

According to the RFCs, the Return-Path can only be added by the recieving server. If an exisiting Return-Path header is found, it is to be removed, or not obeyed.

So, adding a Return-Path header won't work.

Source

Upvotes: 2

Related Questions