- 8.6KViews0likes7Comments
Subscribe on item change
Hi At some point i think I noticed a community project adding functionality to let a user "subscribe" to item updates. We have users who ask for functionality so they can select to subscribe on by instance a specific part to let them receive an email every time this part, ECO or whatever is updated. Does anyone have information about this old community project or have anyone tried to build such functionality? Best Regards Henrik Olesen Kamstrup A/S Denmark6.7KViews0likes7CommentsHow 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 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.8KViews0likes3CommentsHow 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.2KViews0likes2CommentsSend 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.5KViews0likes6CommentsError 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?3KViews0likes1CommentTo 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.8KViews0likes3CommentsAras 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.8KViews0likes2Comments