DBPOLLDemo.Controllers.EmailController.buildBody C# (CSharp) Method

buildBody() private method

private buildBody ( ) : void
return void
        private void buildBody()
        {
            string Body = @"Here are your new login details<br /><br />";

            Body += "<strong>Username: </strong>" +
                    @"&nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; "
                        + this.username + "<br />";
            Body += "<strong>password: </strong>" +
                    @"&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;
                                                &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;"
                    + this.password + "<br />";
            this.body = Body;
        }