Error code "530 5.7.1 Client was not authenticated" sending email.
I'm getting the erreur code "530 5.7.1 Client was not authenticated" when i try to send an email. I was working before but since IT has update the email server it stop working. They provide me with username and password to use in my code but it still does not work. Code: function SendEmail(mFrom, mTo, mSubject, mBody, mAttach) { var i, schema, mConfig, mMessage; try { schema = "http://schemas.microsoft.com/cdo/configuration/"; mConfig = Sys.OleObject("CDO.Configuration"); mConfig.Fields.Item(schema + "sendusing") = 2; // cdoSendUsingPort mConfig.Fields.Item(schema + "smtpserver") = "ServerName"; // SMTP server mConfig.Fields.Item(schema + "smtpserverport") = 25; // Port number mConfig.Fields.Item(schema + "smtpauthenticate") = 0; // Authentication mechanism mConfig.Fields.Item(schema + "sendusername") = Username; // User name (if needed) mConfig.Fields.Item(schema + "sendpassword") = Password; // User password (if needed) mConfig.Fields.Update(); mMessage = Sys.OleObject("CDO.Message"); mMessage.Configuration = mConfig; mMessage.From = mFrom; mMessage.To = mTo; mMessage.Subject = mSubject; mMessage.HTMLBody = mBody; if(mAttach != "") { aqString.ListSeparator = ","; for(i = 0; i < aqString.GetListLength(mAttach); i++) mMessage.AddAttachment(aqString.GetListItem(mAttach, i)); } mMessage.Send(); } catch (exception) { Log.Error("E-mail cannot be sent", exception.description); CollectGarbage(); return false; } Log.Message("Message to <" + mTo + "> was successfully sent"); CollectGarbage(); return true; Best regards, Anastasios.1.9KViews0likes1Commentnot receiving email for completed runs
Since the last update to QAComplete (11.7) I have not been receiving the email alerts for completed test runs. I have checked the email alert settings and confirmed the email address is correct. This worked fine before the update. Any ideas on how I can get my emails to send after each run again?1.8KViews0likes2CommentsPlease add ability to set business days/hours for email notifications
On the same subject ashttps://community.smartbear.com/t5/Collaborator/Fine-tuning-email-notifications/m-p/99727, it is really annoying that if a reviewer hasn't completed a review by friday afternoon, they return to their computer monday to dozens of reminder emails. It would be nice if you could configure business hours/days and you would only get one reminder (regardless of your stalled review timeout) on return to working hours. So if business hours are 9-5 and you haven't finished a review, and your timeout is 2 hours the next morning instead of having 8 emails you would have 1.1.1KViews0likes0CommentsVerify emails in GMail
Hi, Can someone help me with the process to verify emails received to gmail account, using CDO object. I gone thru the help provided for sending emails, that's working perfectly but could not find help for verifying emails. Appreciate your help. Thanks, Srini741Views0likes1CommentAllow users to set their email notification preferences
Currently, when email notifications are enabled, all Zephyr users receive all available notification emails automatically. As a user, I'd like the ability to set my own preferences to receive only the notifications I care about. For example, I may want to receive a notification only when a test case is assigned to me and not receive any emails when a test case is moved or modified, etc. OLD ID:- ZENT-I-120