Amesey
Amesey

Reputation: 852

Contact Form 7 not sending in WordPress 3.7.2

is anyone having this problem? just won't send. the form says sent, but i do not receive anything.

i found a couple of threads and tried some of the suggestions but still not working

http://wordpress.org/support/topic/cant-send-e-mail-from-my-wordpress-site

http://wordpress.org/support/topic/wordpress-371-compatibility

Upvotes: 0

Views: 6102

Answers (5)

buzztone
buzztone

Reputation: 46

Though the Contact Form 7 plugin successfully sends millions of emails every day, there are a host of issues that can stop or delay emails on both the sending and receiving ends. It depends entirely on your local Server & WordPress configuration.

You will need to investigate this issue for your particular local configuration. See Contact Form 7 Email Issues & Problems.

Upvotes: 1

Michael Davis
Michael Davis

Reputation: 21

I just got done debugging this issue for someone. My process was

In my case, it was the weirdest thing. The contact form had a default value for the subject.

[your-subject]

For whatever reason, the php mail() function on my server would NOT send an email with that subject. Take out the dash, and it works fine. I'm betting that this is somehow related to how the mail() function is calling sendmail internally, but I haven't dug any deeper yet.

Upvotes: 1

Antonia
Antonia

Reputation: 21

I installed the WP SMTP plugin, and checked "Use the PHP mail() function to send emails." After that everything worked again.

Upvotes: 2

betogm
betogm

Reputation: 1

In addition to installing a plugin for SMTP (smtp-wp, WP Mail SMTP, etc.), make sure that, in configuration of Contact Form 7, the text area "Message Body" contains at least the code "[your-message] "(without quotes).

Upvotes: 0

nitrammit
nitrammit

Reputation: 143

PHP's mail() function may be disabled on your server. Try installing the WP SMTP plugin and using it instead.

http://wordpress.org/plugins/wp-smtp/

Upvotes: 0

Related Questions