Where to configure SMTP server in ARAS 14+
Hi, There use to be SMTP email option for aras instance where SMTP server details could have been configured, but with ARAS 14+, this option is missing. Is it because of .Net Core change Am i missing something. On the other instance, SMTP Email is visible. Can someone lend their expertise691Views0likes2CommentsCalling SearchDialog from Server method
Hi, Is it possible to show SearchDialog from a Server method? I can use MaximazableDialog in Javascript to show the SearchDialog and get the response in callback. But I want to use such facility in a Server method. In my particular case, I am trying to send email using a server method. If the Recipent is already entered then it sends the email. But I want to prompt the user to search for another user item when Recipient is not pre-defined. If that is not possible then any alternative suggestions will be appreciated. Kind Regards, Vikas765Views0likes3CommentsE-mail to Group Identity
Good day all. I am having a problem figuring out how to create a list of e-mail addresses based on the members of an Identity. I am trying to set up a C# Method to review an ItemType and send an e-mail when there are items that meet the criteria. I have everything working based on getting the the User ID of the currently logged in User. I can't figure out how to create a list of the the Member related ids to create a list of the User e-mail addresses. Thank you for any help that can be provided.Solved2.1KViews1like3CommentsHow can I use this library within aras 11 SP12?
How can I use this library within aras 11 SP12? Hello, I am trying to send an email with a copy, to generate evidence, but I have only found that I should use this method of C # System.Net.Mail.MailMessage myEmail = new System.Net.Mail.MailMessage (); myEmail.Subject = "Test Innovator Email"; myEmail.Body = "Test Email."; myEmail.From = new System.Net.Mail.MailAddress ("test@test.com"); myEmail.To.Add ("test@test.com"); CCO.Email.SetupSmtpMailServerAndSend (myEmail); and the problem that I do not know how to use this method in aras innovator, can you help me know how to use this method of denteo de aras?Solved4.8KViews0likes3CommentsSend emails from a C# Method not working
Hello, I am trying to send an email from within a C# method but I am not receiving the message in my email. My code is made up of trying to check a url and then return if the url returned with an OK status or a 404 Error. When I get to the part where I want to send the email to myself it runs the code but I do not receive the message. Below is a snippet of my code. The result boolean value is returning true. Any idea what could be wrong? Item fromUser = this.newItem("User", "get"); fromUser.setProperty("login_name", "admin"); fromUser = fromUser.apply(); //Get email message Item email_msg = this.newItem("EMail Message", "get"); email_msg.setProperty("name", "ARAS Job Scheduler"); email_msg = email_msg.apply(); email_msg.setProperty("subject", "Series Website Check " + DateTime.Now.ToString()); email_msg.setProperty("body_plain", messageBody); email_msg.setPropertyItem("from_user", fromUser); //Get admin Identity Item iden = this.newItem("Identity", "get"); iden.setProperty("name", "Joshua Bowden"); iden = iden.apply(); //return inn.newError(email_msg.ToString()); bool result = this.email(email_msg, iden);Solved3.5KViews0likes6CommentsAras does not send emails
Hi all! For some time now the Aras server has ceased send emails. No errors (even if I set wrong value to "Mail SMTPServer" parameter to InnovatorServerConfig.xml). No connection attempts in the mail server logs. But the emails to be sent appear in the "Innovator\Server\temp" folder on the server. But nothing else happens. It looks like the server is not trying to send them. What can be wrong? Aras 12.0 SP9 free.Solved2.8KViews0likes2Commentscannot get iis pickup directory
I am trying to send mail, but got this error: cannot get iis pickup directory in my InnovatorConfig.xml, this is the code: <Mail SMTPServer="queue" /> and in IIS, 1. Email-address: my email address 2. I choose "Deliver e-mail to SMTP server" where I mentioned smtp.gmail.com 3. Port : 25 what should I do to send mail?19KViews0likes8CommentsEmail Notification
Hi guys I have successfully created my first project now I want to test that my lifecycle works. so can someone please help me with the email notifications so that i can test email when the user goes through the different lifecycle stages. I have looked at the email notificastion in the programmers guide but i cant really get my head around so can someone please help me. Thank you in advance. I appreciate the help. Thank you. Kind regard user12326KViews0likes12CommentsHow do I get the User-Name instead of ID in email notification (html)
Hi Community, I've created an email notification coupled to a LifeCycle state. The creator of the part has to be mentioned in the notification but I only get the ID. My HTML: ...${created_by_id}... How can I change the ID to User-Name? I want to get it as easy as possible inside the E-Mail Message Item. Thanks in advance for your help. DaveSolved4.9KViews0likes2Comments