ryudice
ryudice

Reputation: 37366

Wordpress function to send an email

I'm creating a wordpress plugin and I was wondering if wordpress has any function in its library to send emails?

Upvotes: 0

Views: 1255

Answers (2)

sandip patil
sandip patil

Reputation: 658

there is a wordpress function for it:

wp_mail($to,$subject,$message);

Upvotes: 1

George Marian
George Marian

Reputation: 2669

At the risk of sounding rude, have you tried the wordpress documentation?

Upvotes: 4

Related Questions