Hi, i have problem to send cfmail to @yahoo. I am using simple contact us page and another page to send emails.
contactus.cfm
<form id="form2" name="form2" method="POST" action="send-email.cfm">
<input name="username" type="text" id="username" size="40" />
<label>
<input name="email" type="text" id="email" size="40" />
</label>
<label>
<input name="subject" type="text" id="subject" size="40" />
</label>
<textarea name="message" cols="70" rows="15" id="message"></textarea>
send-email.cfm
this is email for me (i will recive this email):
<CFMAIL to="webmaster@mysite.com" from="#form.email#" Subject="#form.subject#" server="mail.mysite.com">
#form.message#
Message By:#form.username#
</CFMAIL>
and this is reply to user:
<CFMAIL to="#form.email#" from="webmaster@mysite.com" Subject="Thank you for contacting us">
Thank you for your message,
You wrote:
#form.message#
Message By: #form.username# - #form.email#
</CFMAIL>
<cflocation url="index.cfm">
When somebody contact me with @hotmail,@gmail,@mydomain..
everything is fine i receive email and user receive email, byt when somebody try with @yahoo there is a problem i can receive email but user receive email as spam with delay 20min-few hours....I have same problem with my register page can somebody tell me what am i doing wrong. I tried to type
server="mail.mysite.com"
and
server="127.0.0.1" and nothing, user with @yahoo will receive email as spam with delay.
Please help me I am desperate!!!!