NewRegistrationEmail registrationEmail = new NewRegistrationEmail(mimeMessage.getContent().toString());
String updatePasswordURL = registrationEmail.shouldHaveCorrectFields("fake@email.com");
// when - updating password
HttpResponse updatePasswordPageResponse = httpClient.execute(new HttpGet(updatePasswordURL));
UpdatePasswordPage updatePasswordPage = new UpdatePasswordPage(getBodyAndClose(updatePasswordPageResponse));
updatePasswordPage.shouldHaveCorrectFields();
csrf = updatePasswordPage.csrfValue();
HttpPost updatePasswordRequest = new HttpPost(updatePasswordURL);
updatePasswordRequest.setEntity(new UrlEncodedFormEntity(Arrays.asList(
new BasicNameValuePair("password", "NewPassword123"),
new BasicNameValuePair("passwordConfirm", "NewPassword123"),