I have a email sending code, which I get the sender via request.form and put it inside a variable like this:
Dim nome, emailremetente
nome = trim(request.form("name"))
emailremetente = trim(request.form("email"))
And in this line I enter the variables:
'NOME E E-MAIL DO REMETENTE
objCDOSYSMail.From = nome & "<" & emailremetente & ">"
So far so good, however if on the form I enter my private email ([email protected]) it does not send, but if I enter meuemail @ same-domain-of-site -what- I'm sending-mail-mail- it sends.
That is, if the email of the sender is from the same domain that is sending, it sends, but if it is from another domain it does not send, why and how to solve it? >