NAME
Net::SimpleMail - A simple module to send emails via simplemail.co.in
DESCRIPTION
This module provides a simple way to send emails using the simplemail.co.in email service. It requires the environment variables SM_USER
and SM_PASS
to be set with your username and password, respectively.
FUNCTIONS
simplemail( $recipient, $subject, $message )
Sends an email to the specified recipient with the given subject and message.
EXAMPLES
use Net::SimpleMail;
use utf8;
# Send a simple email
simplemail("test@example.com", "Test Email", "This is a test email message.");
# Send an email with Chinese characters
simplemail("test@example.com", "中文邮件", "这是一封包含中文的邮件。");
AUTHOR
ypeng at t-online.de