I just heard how Joel and Jeff talk about the sender ID in their podcast number 83, and it occurred to me that this is exactly what I need for the site I'm working on.
About 90% of all emails sent from the server bounce or are similar, probably because the server is not “verified”.
I have an SPF record for the server, but that is pretty much the same.
So, since StackOverflow solved these problems, I think the sender id should be fine.
As far as I can tell from wikipedia, you need to change the email header when sending emails - how can I do this with C #?
Also, what do I need to configure DNS wise, etc. to make this work?
Or am I on the completely wrong path here?
Edit: I use the standard SmtpClient class in C # to send emails, and I include both plain text and the HTML version of the mailbox.
source
share