I'm using stock Asp.net membership with built in Login controls, etc. Problem is that the confirmation email that is send by registering has a body that is blank. It should have a link in it that the user clicks on to confirm their email and register. The email does send and is delivered ok except the blank body. Anyone know what I'm doing wrong ? TIA
Asked
Active
Viewed 592 times
0
-
The confirmation e-mail is not a standard feature of ASP.NET membership, so you'll need to provide more details as this sounds like custom code that is having problems. – GalacticCowboy Jul 14 '09 at 18:56
2 Answers
1
Are you assigning the content of the message to the message body?
message.Body = "Dear Subscriber, ...";

Bob Kaufman
- 12,864
- 16
- 78
- 107
-
This was the closest answer, but essentially when I re-used the wizard that generated the code to set the body it worked. (I had been trying to set the template by hand and it did not work). – JoeJoe Jul 17 '09 at 22:55