The email tag has no wiki summary.
0
votes
1answer
26 views
Customizing lost password email
I need to change the default email text that will be sent to recover the password.
I have already changed the mail of activation in multisite:
// Start changing email body
function ...
1
vote
0answers
25 views
Google Apps SMTP for WP MultiSite?
How can you force WordPress MultiSite to send all emails via a Google Apps SMTP server? I have attempted to use Easy WP SMPTP, however that does not work exactly as I'd hoped, not to mention it fails ...
0
votes
1answer
17 views
How to check “From Email” via WordPress before an email is sent
Is it possible to check an email from email via WordPress before an email is sent?
I'm working on a phpmailer plugin to send WordPress email via Amazon SES (which requires all emails to be verified). ...
1
vote
1answer
63 views
Send all WPMU emails via SMTP
I've tried plugins like "WP Mail SMTP" "WP SMTP" "Easy WP SMTP" "WP SMTP Config" noone is compatible with WPMU
-4
votes
0answers
19 views
sent email when publish a post
I have custom post type 'Campaign'. When I create a Campaign from frontend, It became pending Campaign in dashboard. I need to send email when I publish the 'Campaign'. How can I do that?
0
votes
1answer
27 views
Interrupted cron script sending me hourly emails. Please help!
One of my Wordpress installs (cPanel VPS) had a cron job (backup to Dropbox script) that was interrupted. Ever since the interruption I receive hourly emails from root@ cPanel/WHM:
-Excessive resource ...
1
vote
1answer
102 views
How to auto send email when publishing a custom post type?
I'd like to have an email automatically sent out to my website's subscribers when I publish a post for a specific custom post type. I've found a few plugins that will do this but only for regular ...
0
votes
0answers
21 views
feedburner email notification when post is updated
I usually need to update my posts when there have new information. As default feedburner don't send email notification when the post is update but I check another site (using custom template), he ...
0
votes
1answer
27 views
Overwrite CSS of Instaemail plugin popup
I am using instaemail plugin on my wordpress for sending a post by email and I am trying to customize popup window, but seems that I can not overwrite Id or I don't know how to do it. Same popup you ...
2
votes
3answers
197 views
Sending form data via PHPMailer - How to action PHP script from a form
Some easy points on offer...
I wish to action a PHP script from a WordPress page but where is the best place to store the script? The script works perfectly fine using a non-WordPress environment in ...
-1
votes
0answers
14 views
Sharepoint like plugin for wordpress [closed]
I created my website (not blog) with wordpress. We want to use it for collaborative work. I like Sharepoint and I wonder whether asimilar plugin exists for wordpress and which allows to create tasks ...
0
votes
1answer
58 views
How can I insert a dynamic URL in my email template?
I'm not sure if that's even possible, but I thought I should give it a try.
I'm using WP Better Emails plugin in order to create HTML emails for my buddypress website.
I want to add to the footer an ...
-2
votes
1answer
67 views
Woocommerce Emails not being sent
I would like to know the best way to debug email issues in woocommerce when the mails are not being sent for any account/Order related processes.
Thanks
0
votes
1answer
31 views
Send email for confirmation during user registration
I am very new to WP.How does a confirmation mail is sent during user registration.Is there any services being worked out here. is this a free service using php for any plugin.
1
vote
1answer
50 views
Wordpress front-end post form and email after
I have coded a front-end form that posts to a custom post type, i have a form input field for an email and when the form posts to the custom post type i want an email sent to the email address ...
2
votes
1answer
69 views
WP Cron emails not working
Running wp 3.5.1.
I have 2 plugins that work in part. They do everything nice. If I click to send emails, they send the emails. However the scheduled emails are not being sent.
The plugins are:
...
0
votes
0answers
27 views
Wordpress email notification using address with plus sign
So I've managed to change mail_from used by WP to send e.g. new comment notifications by adding filters like that:
add_filter('wp_mail_from_name', 'get_name');
add_filter('wp_mail_from', ...
0
votes
0answers
30 views
How to get Internal Date Message Attribute in php - wordpress admin init hook
I am writing a wordpress plugin and need to show recent emails on plugin page.
I am using IMAP and want to keep track of UID, UIVALIDITY and INTERNALDATE to identify newly arrived emails but i don't ...
1
vote
1answer
45 views
email sends from wordpress@domain.com even though I have it set to something else
My wordpress settings email is contact@domain.com. When I search my entire database for the email of wordpress@domain.com, it does not exist.
Yet my registration emails are still sent from ...
0
votes
1answer
58 views
send bulk emails without timeout
I am developing a plugin that sends emails out to users. I am having difficulty in finding the most performance enhanced way to send these emails out and prevent a server timeout. In other words, I ...
0
votes
0answers
9 views
send email on update in post [duplicate]
when i try update any post both the event are firing and getting two mails.
1 st one about update in post.
2 nd about new post creation with same name.
actually, iguess at the time of update event i ...
0
votes
0answers
55 views
Emails not getting delivered to Hotmail addresses
Recently Hotmail users are unable to receive their password email when they register or use the "Forgot my password" link to get a reset link emailed to them. So far this is only a problem for ...
0
votes
2answers
194 views
Include HTML template file in wp mail
I'm using wp mail to send an html email. But there's quite a lot of html code in the email, so rather than including all the code in my wp mail function, is it possible to have the code in a separate ...
0
votes
0answers
40 views
Correct process for updating custom field and sending email on form submit [closed]
I've built a client admin area where I want clients to be able to accept or decline contracts. If they click the accept button it updates a custom field to say it's been accepted, but I can't work out ...
1
vote
1answer
64 views
Send mail to wordpress admin
I have a page on my wordpress site that has some fields to be filled by visitor. On the click event of 'submit' button, all the details filled by visitor should be mailed to the wordpress admin.
I ...
0
votes
1answer
161 views
Create WP account from an external email form submission?
I have a single email field form on a static, 1 page html website which upon submitting, I would like it to pass the entered email to a WordPress install to use as an email for a new account. The html ...
0
votes
1answer
66 views
get_user_meta() doesn't include user email?
I simply wonder why <?php var_dump(get_user_meta(4)); ?> doesn't contain an email address of the user. Instead I have to use
get_userdata(4)->user_email; to query the email of the user.
...
0
votes
2answers
110 views
One comment per user email per post
i have this code to limit the comments per user.
<!-- #only one comment -->
<?php global $current_user,$post;
$args = array('user_id' => $current_user->ID,'post_id' => ...
-1
votes
1answer
113 views
I want to Add My Product Image to Admin Order Email in Woocommerece
I want to Add my product image (product which is ordered) in a thumbnail form to recognize the product easily by admin, in Admin Order Email.
-1
votes
1answer
244 views
Adding a second email address to a completed order in WooCommerce
Before I ask this question, I know there is a (legitimate) hesitation to answer questions here about Woo products since they have their own support and their users should be encouraged to use that. I ...
0
votes
1answer
54 views
How to add a button to check the emails of my domain?
I am looking for a button in the main menu that I can click it and then can send me to ask my email and password and after I put it I can see my emails from my domain.
Why?
Because I have workers ...
2
votes
2answers
75 views
How do I allow users to follow a post and then allow admins to email all users who have followed that post?
I'm looking to build out the following functionality, but I'm having trouble finding any help on it:
user follows a post > user's email is pulled into an admin page and associated with said post > ...
0
votes
0answers
51 views
Does the php mail() function work in Wordpress?
This relates to another question I posted here but it's a
different matter so I hope people don't think I'm double posting.
I have an email form in Wordpress like this.
html
<form action="" ...
0
votes
1answer
57 views
Adding attachment file name to email link
I'm doing up a photography site where each post is a photo project, and each post attachment will be displayed on its own attachment page (linked to from the main post page).
On the attachment page, ...
0
votes
0answers
27 views
How can I add an email confirmation field upon registration so that the user has to type his email twice?
I would like to confirm email address is typed correctly.
0
votes
1answer
240 views
Turn off admin emails for new user registrations
How can I turn off email notifications for the user and admin when a new user is registered?
I've seen a few suggestions and plugins but none appear to work. One was to take the function from one of ...
1
vote
2answers
90 views
How to set up a simple email subscription?
I am working on a new Wordpress site, and I want to have a placeholder "under construction" page while I'm setting it up that has a link to subscribe to an email service. The subscription service ...
0
votes
1answer
168 views
Contact Form 7 Plugin emails not being received by some accounts
I am using contact form 7 to send an email form. I receive them, but my clients' email addresses - one at the host and one at gmail, never do. They claim that none of the messages end up in their ...
1
vote
1answer
163 views
Notify comment author upon reply
To improve communication between guest commenters and authors, I am fiddling with a script that sends an email to the author of a comment when it receives a reply.
Here is how the code looks so far:
...
0
votes
1answer
85 views
how to run loop in function.php that sends email based on specific conditions?
So far this code works if I run it as a page in WordPress. I am trying to send my user email updates when I publish a post with with a specific tag. The users can choose if they want to receive the ...
0
votes
1answer
67 views
Not able to override pluggable function with a mu_plugin
I'm trying to modify the email that's sent to users when they are invited to join my multisite network. Understanding I can only use the pluggable function, how do I override the default email with a ...
0
votes
0answers
42 views
Unable to receive password recovery e-mail for certain e-mails [closed]
My client is unable to get her password recovery e-mail, and my project manager was unable to get hers via her company e-mail.
However here is the weird part:
My Project Manager can get the recovery ...
0
votes
2answers
153 views
Create custom welcome email without a plugin
Is there a way to customize the email content and subject for the welcome and verification emails sent during the registration process for Wordpress? I'd like to hook or filter in without using a ...
0
votes
1answer
132 views
Add “Email Image” button with Hyperlink for individual images
I use NextGen Gallery in combination with "Share My Gallery" and "prettyphoto Media" plugins to create and display image galleries that allow visitors to share individual images. I would like to add ...
0
votes
0answers
15 views
Wordpress from/or reply to email [duplicate]
Possible Duplicate:
changing notification emails from WordPress <wordpress>@mydomain.net to something else
I have been looking very hard for a solution to this.
When a user ...
0
votes
1answer
217 views
Wordpress Won't Send Email When a User Register
When a user registers on my wordpress site, it does not send them an email containing the password.
I do notice that an email was sent when a users email is @mydomain.com, but for others let say ...
0
votes
1answer
162 views
Email from my theme's contact form doesn't get the reply-to address right
I'm using a theme that has a built in contact form, which has some options (like where the form is sent) set through the OptionTree plugin.
What's happening is, the email gets sent, but the reply-to ...
-1
votes
1answer
228 views
New User Registration email
I am receiving an email notification whenever a new user is added to my site. I need to change the default 'send-to' address. It is using a personal email, rather than my 'webmaster' email. Where is ...
0
votes
1answer
81 views
Subscribe to a post's comments without posting a comment yourself
I've seen a few plugins (subscribe2, subscribe to comments) that allow people that have commented to receive emails containing follow up comments.
What I want to do is slightly different. I want to ...
0
votes
1answer
136 views
need a confirmation text to appear on email submission
With help of other relevant posts here, I have put together a code which allows the users to send me a list of selected posts via e-mail and it is working fine.
Now, I would like a confirmation text ...




