将字符串变量插入数组

时间:2018-08-09 16:39:29

标签: php email sendinblue

我在我的PHP项目中使用了Sendinblue SMTP,我想将交易电子邮件发送到电子邮件的动态列表,问题是当我使用变量而不是字符串时出现语法错误。例如,此代码非常有用:

    include 'Mailin.php';
    $mailin = new Mailin('senders@sender.com', 'key');
    $mailin->
    addTo(
        array(
                 'email1@email.com' => '', 'email2@email.com' => '', 'email3@email.com' => ''
            )
    )->

    setFrom('sender@sender.com', 'Test')->
    setReplyTo('sender@sender.com', 'Test')->
    setSubject('Example')->
    setText('Test')->
    setHtml($htmlContent);
    $res = $mailin->send();
    print_r($res);

但是,如果我使用变量而不是“ addTo Array”中的字符串,则会显示语法错误,例如:

    $customers = '';
    foreach ($clientes as $customer) {

        for ($i=1; $i < 41; $i++) { 

            if ($customer['email'.$i]  != "" or $customer['email'.$i] != NULL) {

                $customers .= "'".$customer['email'.$i]. "' => '', " ; //for each customer's email add the email in " 'email@email.com' => '', " format
            }
        }
    }

    $customers = substr($customers, 0, -2); //removes last space and comma of the String

    include 'Mailin.php';
    $mailin = new Mailin('senders@sender.com', 'key');
    $mailin->
    addTo(
        array(
                 $customers
            )
    )->

    setFrom('sender@sender.com', 'Test')->
    setReplyTo('sender@sender.com', 'Test')->
    setSubject('Example')->
    setText('Test')->
    setHtml($htmlContent);
    $res = $mailin->send();
    print_r($res);

如果我使用Print_r($ customers)函数,即使我使用代码,它也会显示我在第一个示例中使用的确切字符串:

    $text = "'email1@email.com' => '', 'email2@email.com' => '', 'email3@email.com' => ''";

    if ($customers == $text) {
        print_r("Yes");
    }else{
        print_r("No");
    }

结果是“是”,但是当我在

中使用变量时
    addTo(
        array(
                 $customers
            )
    )->

显示错误,但是如果我直接使用字符串,则发送电子邮件

    addTo(
        array(
                 'email1@email.com' => '', 'email2@email.com' => '', 'email3@email.com' => ''
            )
    )->

如果$ customers变量具有所需的字符串,我不知道为什么会显示错误。

您知道如何在我需要发送的电子邮件中使用变量吗?

1 个答案:

答案 0 :(得分:3)

您不能通过将字符串中带有=>的字符串连接起来来构建数组。要在关联数组中创建元素,只需分配给该数组索引即可。

$customers = [];
foreach ($customers as $customer) {
    for ($i = 1; $i < 41; $i++) {
        if (!empty($customer["email" . $i])) {
            $customers[$customer["email" . $i]] = "";
        }
    }
}
include 'Mailin.php';
$mailin = new Mailin('senders@sender.com', 'key');
$mailin->
addTo($customers)->
...

另外,请参阅Why non-equality check of one variable against many values always returns true?,以了解为什么在跳过空电子邮件时应该使用&&而不是||(我通过使用!empty()进行了简化)。