// plain
PHPMailer is a powerful library used for sending emails in PHP. To use it to reply to an email, you need to use the addReplyTo()
method. This method takes two parameters: the email address and the name of the recipient.
For example:
$mail->addReplyTo('[email protected]', 'John Doe');
The code above will add a reply-to address to the email.
$mail
- an instance of the PHPMailer classaddReplyTo()
- a method of the PHPMailer class used to add a reply-to address to the email[email protected]
- the email address of the recipientJohn Doe
- the name of the recipient
onelinerhub: How do I use PHPMailer to reply to an email?