How can I send an email in my plugin?

Use wp_mail(), not just mail(). It is a wrapper for PHPMailer, a class that takes care for many problems the native mail() function often gets.

See my plugin 404 Tools for how to use it in this case. To send an HTML email see Milo’s answer to a related question.