Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use WordPress to send email

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how to use WordPress to send e-mail, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let Xiaobian take you to understand.

The wp_mail () function is used to send mail, similar to the mail () function of PHP.

The default sender name is WordPress, and the sender mailbox is similar to wordpress@example.com.

Usage

Wp_mail ($to, $subject, $message, $headers, $attachments)

Parameters.

$to

(string | Array) (must) recipient. Multiple recipients can use an array or a string of mailboxes separated by commas.

Default value: None

$subject

(string) (required) message title.

Default value: None

$message

(string) (required) message content.

Default value: None

$headers

(string | Array) (optional) message Headers information. It can be an array or a string separated by carriage returns (format: name: content).

Default value: empty string

$attachments

(string | Array) (optional) message attachment. Multiple attachments can use an array or a string separated by carriage returns.

Default value: empty string

Return value

(Boolean) returns whether the message was sent successfully.

Examples

The most basic email delivery:

Wp_mail ('me@example.net',' The subject', 'The message')

Attachment and headers information:

$attachments = array (WP_CONTENT_DIR. '/ uploads/file_to_attach.zip'); $headers =' From: My Name'. "rn"; wp_mail ('test@example.org',' subject', 'message', $headers, $attachments)

Html mail and send multiple mailboxes at a time:

$multiple_to_recipients = array ('recipient1@example.com',' recipient2@foo.example.com') wp_mail ($multiple_to_recipients, 'The subject','

The HTML message

',' Content-Type: text/html')

Other

This function is located at: wp-includes/pluggable.php

Resolve the problem that the message cannot be sent

Unable to send mail is a common problem in WordPress, which is generally caused by the server not supporting the mail () function of PHP. There are usually two solutions.

PS:WordPress must use the wp_mail () function to send mail, rather than calling the PHP SMTP class or other functions directly.

I. configure the server environment

If you are using VPS, you can configure the server to support the mail () function. According to each person's situation, you can find the configuration method through the search engine. I won't go into details here.

Second, use SMTP

The second is to use SMTP to send e-mail, which is also a method that I recommend. SMTP uses the servers of other free mail service providers to send mail, so it is not easy to identify it as spam in this way.

Well, the recommended way to make WordPress support SMTP is to use the WP SMTP plug-in. After installation, configure your SMTP information in the background. I use QQ Mail.

Once configured, you can test whether the configuration is successful or not below.

Plug-in home page: https://wordpress.org/plugins/wp-smtp/

Thank you for reading this article carefully. I hope the article "how to send email using WordPress" shared by the editor will be helpful to everyone. At the same time, I also hope you will support us and follow the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report