Hello:
My server is using the Persits AspEmail mail component component and i have the same problem, of course.
Web wiz is absolutelly right and my server only allows to send emails from an existing and unique recipient.
A way to solve the problem is just modify some code lines related to the aspEmail in the program function_send_email.asp
Here enclose the modifications to be done:
1.- Create a new variable such
Dim straspemailsender
2.- Declare the variable value:
3.- Delete or ignore the 'who the e-mail is from
'Who the e-mail is from
'.From = strFromEmailAddress
4.- Add the new e-mail is from variable
.From = straspemailsender
This little modifications should eventually solve your problem. I solved in that way.
Webwiz should eventually correct me if i am in a wrong.
Question: Is there any other way to solve this non critical issue?
Thanks
Santiago Duarte.
Edited by LOGANS - 02 July 2008 at 7:01pm