The html-email tag has no wiki summary.
0
votes
2answers
106 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
1answer
98 views
Visual Form Builder - Email Content?
Looking for a way to easily edit the email content for VFB Pro ... Reason being, I have a really long form, that gets printed, but all fileds are not alway populated, so when I am printing the email, ...
0
votes
1answer
62 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
2answers
129 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
337 views
Can't add mailto link in page [closed]
Whenever I add a mailto link (<a href="mailto:alias@site.com">alias@site.com"</a>) in a blog post or through the admin edit page (HTML interface, not visual), WordPress will incorrectly ...
-1
votes
1answer
58 views
Why is a space or line break being added to url in plugin html [closed]
Can anyone tell me why we are getting spaces and line breaks in code that should be rock solid out of wordpress?
If you visit this page: ...
0
votes
2answers
362 views
Is it possible to send blog posts via email to subscribers?
Would like to be able to send the blog post in an email mail to my subscribers, this would be great if it can be achieved through a plugin.
0
votes
1answer
226 views
Images in wp_mail not showing
I created a plugin that sends an email:
$subject = 'New comment - '.$post_title;
ob_start();
include(SUBSCRIBE_USER_BASE_DIR . '/email/message.php');
$message = ob_get_clean();
...
0
votes
1answer
324 views
Programming Wordpress to send a custom-built form to specified email address
I have built a custom html/javascript form that I would like to incorporate into my blog. I would like the submit button of the form to send the information to a specific email address. Is there a way ...
0
votes
1answer
32 views
Does anyone know a plugin that turns a 'post' into an html newsletter?
I know you could just grab the code or some such. But I'm trying to figure out a way to easily implement this for a client.
All my googling has just turned up signup forms, not anything for actually ...
3
votes
1answer
3k views
Is there a way to send HTML formatted emails with Wordpress' wp_mail function?
Is there an action_hook or something similar that could help me achieve this?
I tried adding markup in a PHP string variable and just fired off an email with the wp_mail function like so:
$email_to ...
0
votes
2answers
482 views
Send batch of posts as HTML Email?
Looking for a little help getting to grips with a quote, part of which is producing quarterly reports consisting on all the posts from that quarter.
My question is two fold - Is there a plugin that ...
