95aceeb7d6ed6e2b686fff6149663a226c099bb4 max Wed Mar 27 04:30:49 2019 -0700 adding spam folder message to hglogin email sent message, refs #21378 diff --git src/hg/hgLogin/hgLogin.c src/hg/hgLogin/hgLogin.c index 372d368..2ff0304 100644 --- src/hg/hgLogin/hgLogin.c +++ src/hg/hgLogin/hgLogin.c @@ -327,30 +327,32 @@ "window.location ='%s?%s';\n" , hgLoginUrl, paramStr); } void displayActMailSuccess() /* display Activate mail success box */ { char *returnURL = getReturnToURL(); hPrintf( "<div id=\"confirmationBox\" class=\"centeredContainer formBox\">" "\n" "<h2>%s</h2>", brwName); hPrintf( "<p id=\"confirmationMsg\" class=\"confirmationTxt\">A confirmation email has been sent to you. \n" "Please click the confirmation link in the email to activate your account.</p>" + "<p>You may have to look in your spam folder for an email from genome-www@soe.ucsc.edu, " + "especially if you use Microsoft Outlook or Hotmail.</p>" "\n" "<p><a href=\"%s\">Return</a></p>", returnURL); cartRemove(cart, "hgLogin_email"); cartRemove(cart, "hgLogin_userName"); } void sendActMailOut(char *email, char *subject, char *msg) /* send mail to email address */ { int result; result = mailViaPipe(email, subject, msg, returnAddr); if (result == -1) {