Hello,
I use the following code to send mail in Server Method of Wrokflow Activity.I have done IIS SMTP Email Configuration.
System.Net.Mail.MailAddress SendFrom = new System.Net.Mail.MailAddress(from_user, from_userN);
System.Net.Mail.MailAddress SendTo = new System.Net.Mail.MailAddress(toUserEmail);
System.Net.Mail.MailMessage MyMessage = new System.Net.Mail.MailMessage(SendFrom, SendTo);
MyMessage.Subject = emailSubject;
MyMessage.IsBodyHtml = true;
MyMessage.Body = emailDate + "Dear " + toUserName + "," + emBody;
CCO.Email.SetupSmtpMailServerAndSend(MyMessage);
System.Threading.Thread.Sleep(2000);</p>
I am trying to vote workflow task in 'My Basket'.After that,I get error "Mailbox unavailable. The server response was: Rejected by spam filter EIG Aggregate RBL".
Does anybody face a similar error ?
How I should resolve this error?
Appreciate any feedback.
Any ideas, please do share. Thank you so much.
Chan,
Hi Chan,
The error appears to be coming from your mail server rather than the Innovator server. It seems like the email being sent from the Innovator Server is being blocked by your spam filter, so I'd recommend adding your Innovator server to the whitelist of your SMTP server.
Because this isn't an Innovator-specific issue, you may have better luck posting this question on a more general forum like Stack Overflow.
Chris
Christopher Gillis
Aras Labs Software Engineer
Hi Chan,
The error appears to be coming from your mail server rather than the Innovator server. It seems like the email being sent from the Innovator Server is being blocked by your spam filter, so I'd recommend adding your Innovator server to the whitelist of your SMTP server.
Because this isn't an Innovator-specific issue, you may have better luck posting this question on a more general forum like Stack Overflow.
Chris
Christopher Gillis
Aras Labs Software Engineer