Calling 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.8KViews0likes2CommentsHow 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.9KViews0likes2CommentsHow to disable mail completely
For installations in disconnected areas where no Internet connection exist, we want to completely short circuit the mail sending functionality. Sure, we could configure the SMTP like so: <Mail SMTPServer="bogus"/> ... but it can produce error messages. Is it possible to turn off e-mail by configuration?4.2KViews0likes2CommentsError while sending email to the group Identity when email id not present for some users
Hi Experts, I am using the Aras OOTB function to send the emails. Please find below code - document.thisItem.email(EmailBody, GroupIdentity); When all the members of the group identity have email ID's present then it is working fine, but if any of the members email is not provided then it is returning the error and not sending emails to any member. Is there any way to handle this?3KViews0likes1Comment- 8.6KViews0likes7Comments
To Add Filter For Status In Report
I Have Three color Red-Green-Yellow Red=Pending, Green=Complete,Yellow=In Working I Need To Show Only Pending Activity On Report As Pending Activity Color Is Red So only Red Color Should Be In Status <b>column</b> Please Help Me to Filter Status.. Its Urgent var qryItem = new Item("Project","get"); qryItem.setID(projId); qryItem.setAttribute("select","date_start_target,date_due_target,date_start_sched,date_due_sched,name,project_number,wbs_id,date_start_act,date_due_act,status,percent_compl,expected_duration"); qryItem.setProperty("status","#FF0000"); qryItem.setPropertyCondition("status","red");2.8KViews0likes3Comments