public void BeforeAll()
        {
            theServer = EmbeddedSmtpServer.Local(8181);

            theMessage = new MailMessage("*****@*****.**", "*****@*****.**", "Hello there",
                                         "O hai, here is a url for you: http://localhost/something/something/else/is/cool");
            theMessage.CC.Add(ccAddress);
            theMessage.Bcc.Add(bccAddress);
            theServer.Start();

            theClient = new SmtpClient("localhost", theServer.Port);
            theClient.Send(theMessage);

            theServer.WaitForMessages();
        }
        public void BeforeAll()
        {
            theServer = EmbeddedSmtpServer.Local(8181);

            theMessage = new MailMessage("*****@*****.**", "*****@*****.**", "Hello there",
                                            "O hai, here is a url for you: http://localhost/something/something/else/is/cool");
            theMessage.CC.Add(ccAddress);
            theMessage.Bcc.Add(bccAddress);
            theServer.Start();

            theClient = new SmtpClient("localhost", theServer.Port);
            theClient.Send(theMessage);

            theServer.WaitForMessages();
        }