I might be just blind (very possible!) but i can't find any information on here/Google anywhere that helps me out at all :(

First up, below is the code i'm using to send the email message:

MailMessage newMM = new MailMessage();

newMM.To.Add(new MailAddress(userEmail));
newMM.From = new MailAddress(getFrom, getFromName);
newMM.IsBodyHtml = true;
newMM.Subject = userSubject;
newMM.Body = userHTML;
if (chkEncoding.Checked)
{
    newMM.BodyEncoding = System.Text.Encoding.UTF8;
    newMM.SubjectEncoding = System.Text.Encoding.UTF8;
}

NetworkCredential basicAuthenticationInfo = new NetworkCredential(mUsername, mPassword);
SmtpClient smtp = new SmtpClient(mServer);
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = false;
smtp.Credentials = basicAuthenticationInfo;
smtp.Send(newMM);

Which sends fine, and does UTF8 fine when enabled etc... however in the resulting email i get this (UTF8 or not):

...
MIME-Version: 1.0
From: "The name i want"
 <fromname@fromdomain.com>
To: someone@atadomain.com
...

And this is from checking the files in MSSMTP Queue folder, so it seems to me its .NET adding the line break in or MSSMTP doing it when it receives the email.

Anyone come across this before? or have ideas? :)

The reason this is important to fix is because Declude is saying that the from address doesn't match and adds spam weight which i can see via the headers:

X-RBL-Warning: FROMNOMATCH: Env sender (fromname@fromdomain.com) From: ("The name i want") mismatch.
...
X-Declude-Tests: ... FROMNOMATCH [2] ...

So i imagine other spam filters will also have a whinge about it.

EDIT:

For reference; All emails look perfectly fine in all email clients, this is purely a header rendering/spam processor problem.

If someone has a little spare time, could they possibly send a message using .NET and check the raw headers (unedited and unparsed by email client) and let me know? i'll keep on trucking for now :)

EDIT2:

I have created a basic SMTP server in .NET using sockets, basic replies (220's, 250's, 354's etc) and used the code to connect to it and send... and the problem occurs, so this is definitely at the code/.NET side of things and not MS-SMTP.

I have also created a brand new .NET 4.0 windows application, added a button and put in this code (note i added the using System.Net.Mail; to the top as well but nothing else from a blank new windows application):

private void button1_Click(object sender, EventArgs e)
{
    MailMessage newMM = new MailMessage();
    newMM.To.Add(new MailAddress("toaddress@domain.com"));
    newMM.From = new MailAddress("fromaddress@domain.com", "Happy As'Larry");
    newMM.IsBodyHtml = true;
    newMM.Subject = "My Subject";
    newMM.Body = "My HTML";
    SmtpClient smtp = new SmtpClient("localhost");
    smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
    smtp.Send(newMM);
}

Please note this is NOT edited in any way... as its local to a testing SMTP output application there is no need for verification so its exactly as it is above.

My SMTP application uses a TcpListener and Socket objects from System.Net.Sockets and just outputs all remote data to a simple text box, it parses a string for the command buffer so it can actually reply and get to the DATA command to check what .NET is sending however :)

Output is here:

EHLO WhiteDragon-PC
MAIL FROM:<fromaddress@domain.com>
RCPT TO:<toaddress@domain.com>
DATA
MIME-Version: 1.0
From: "Happy As'Larry"
 <fromaddress@domain.com>
To: toaddress@domain.com
Date: 28 Feb 2011 19:00:19 +1100
Subject: My Subject
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: quoted-printable

My HTML

.

So with 2 fully new applications, with very basic code in each i still get the problem!

Is this a .NET 4.0 bug? if anyone wants the SMTP code i'll paste that too if you want to check this thing out.

link|improve this question

I use SmtpClient. My raw messages do not have the line break between the "From" name and the "From" email address. I'll think about your issue now. – John Pick Feb 28 '11 at 5:58
The From header isn't very long, is it? SMTP automatically adds linefeeds after something like 990 characters. – John Pick Feb 28 '11 at 6:34
The replacement text i've put in there is longer than the real data :) – White Dragon Feb 28 '11 at 6:49
Might be time to post into server fault instead then? if no-one else is getting the issue then it might be MS-SMTP configuration at fault. – White Dragon Feb 28 '11 at 6:50
feedback

2 Answers

up vote 2 down vote accepted

Ok!

The last part of my edit turns up the results.

Switch the test client application to .NET 3.5 and the from header becomes:

From: "Happy As'Larry" <fromaddress@domain.com>

Switch the test client application to .NET 4.0 and the from header becomes:

From: "Happy As'Larry"
  <fromaddress@domain.com>

So this a problem in/change to the .NET 4.0 libraries and now i have a solution... change the profile to .NET 3.5!

Thanks to all who helped out :)

EDIT: Alignment and encoding of tags... heh

EDIT2: Additionally, this has fixed Declude's spam check headers, the NOFROMMATCH[2] weighting is gone so my emails are less 'spammy'

My suggestion is if you use .NET 4.0 and send emails... get this checked!

link|improve this answer
You should report this to ms connect. I checked and didn't see any existing reports for this issue. – Samuel Neff Feb 28 '11 at 13:09
feedback

Comparing your source code to similar source code in one of my projects, the only possibility I come up with is:

Your getFrom variable contains the linefeed.

link|improve this answer
newMM.From = new MailAddress("fromname@fromdomain.com", "The name i want"); gives the same problem so it's certainly not that – White Dragon Feb 28 '11 at 6:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.