Can't Send Email at my contact form.

Status
Not open for further replies.

teksoulx

Member
Messages
31
Reaction score
0
Points
6
Hi! Good day everyone.
i create a contact form and included php mailer library.
but i tried a sending message to my created contact form. but i never receive any message from my contact form. i don't know what is the problem? can you help me?

i'm a newbie...
thanks

Here's my site: www.teksoul.x10.bz
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Hi,

It looks like your email was being sent, but it was blocked by our mail server's filters before it could be delivered, because it looked like a spam email. It looks like you sent a quick test email; please could you try sending an email with some proper content, and see if it works then? :)

Thank you,
 

teksoulx

Member
Messages
31
Reaction score
0
Points
6
ah! i see. i will try it again to send a message. thanks for information.
 

teksoulx

Member
Messages
31
Reaction score
0
Points
6
still nothing change. i try to send a message with a proper content as you said. but until now i don't have receive a message.
 

freezin2

Member
Messages
52
Reaction score
2
Points
8
Are you using an AOL account? Any mail I have sent to my AOL address from my site gets blocked by AOL. It doesn't even go into my spam folder. I drove myself nuts for a while trying to figure out why the e-mails seemed not to be going out, only to find that they went out just fine when I used a non-AOL address.
 

teksoulx

Member
Messages
31
Reaction score
0
Points
6
thanks for reply. i already fix.
i remove this and my contact form is properly working now.
$mailer->IsSMTP();
$mailer->SMTPDebug = 2;
$mailer->SMTPAuth = true;
$mailer->SMTPSecure = "ssl";
$mailer->Host = "xo7.x10hosting.com"; // smtp.gmail.com Default SMTP Address
$mailer->Port = 465; //465 Default port for Gmail & SSL
$mailer->Username = "your username"; // Your gmail username
$mailer->Password = "your password"; // gmail password
$mailer->AddAddress(your@domain.com); // Your gmail email address
you can try it.
 
Status
Not open for further replies.
Top