Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an ASP.NET Web Form which was timing out when sending over 1800 emails whose addresses were being obtained from a DB. So I'm attempting to send the emails from a console application instead - I will access the DB there.

I need to pass the email subject line and body text as parameters to the ProcessStartInfo method but need guidance with the syntax. Can anyone help? Specifically, if I concatenate the subject and body vars and separate them with a space, will that suffice or will spaces in the vars cause problems?

share|improve this question

1 Answer

up vote 2 down vote accepted

Both the email subject and body should already contain spaces so you need to obey the same rules as if you were calling the program from the command line and enclose in " the arguments that contain spaces, otherwise each space in the subject will delimit a new argument.

Another special case is if the subject and body already contain the " character so you also need to account for that.

I think this should do the trick:

string subject = "Hello World!";

string body = @"This has "" quotes """;

string arguments = string.Format(
    @"""{0}"" ""{1}""", 
    subject.Replace(@"""", @""""""),
    body.Replace(@"""", @""""""));
share|improve this answer
Can you give a short code sample with a few sample words in each var? – IrishChieftain Nov 8 '11 at 17:17
Great answer, thanks! :-) – IrishChieftain Nov 8 '11 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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