PHPMailer - 使用 PHP rand();主题特征

PHPMailer - Use PHP rand(); feature in subject

如何使用 PHPMailer 在我的主题中使用随机数 php 函数?

$mail->Subject = '*- Mailer Tester -*';

我想在其中添加以下代码,

rand();

注意:我已经尝试过在“*”后面添加它的简单解决方案,但它只是添加文本,所以在电子邮件主题中它会像

*- Mailer Tester -* rand();

尝试

$mail->Subject = '*- Mailer Tester -*'.rand();