我继承了一个WordPress站点,该站点有很多看起来像是引导的自定义代码。一个联系人表单编码在一个PHP文件中,客户端希望添加更多的电子邮件地址,以便将提交内容发送到。
我已经找到了发送电子邮件的代码,但我想确保我正确更新了它,而不是破坏它。以下是代码行:
$emails = array( $email, \'[email protected]\' );
我假设我需要将其更新为
$emails = array( $email, \'[email protected], [email protected]\' );
或
$emails = array( $email, \'[email protected]\',\'[email protected]\' );
有什么见解是正确的吗?