How to pass dynamic data to email template desgined on sendgrid webapp ? :-| Sendgrid

后端 未结 2 1717
隐瞒了意图╮
隐瞒了意图╮ 2020-12-28 08:24

I integrated sendgrid email service with my sample application. & also able to send email to user.

But how to pass dynamic data to Email template design on se

相关标签:
2条回答
  • 2020-12-28 08:38

    I think it is possible now, by adding a substitutions key in the options. I also added the to key because that one is mandatory.

    $request_body = json_decode('{
      "personalizations": [
        {
          "substitutions": {
            "-first_name-": "John",
            "-last_name-": "Doe"
          },
          "to": [
            {
              "email": "john.doe@example.com",
              "name": "John Doe"
            }
          ]
        }
      }
    }');
    $response = $sg->client->mail()->send()->post($request_body);
    echo $response->statusCode();
    echo $response->body();
    print_r($response->headers());
    

    Template in Sendgrid looks like this:

    Dear -first_name- -last_name-,
    
    Foo bar...
    
    Kind Regards
    
    0 讨论(0)
  • 2020-12-28 08:50

    Instead of focusing on substitution via the Email Template application (which is not possible), You should take a look at the SMTPAPI. By adding a X-SMTPAPI header in your message, you can

    1. Control the settings of your SendGrid account (i.e. change filter settings on the fly)
    2. Send to up to 1000 recipient addresses in a single SMTP transaction (SMTPAPI To: Array)
    3. Perform mail-merge like substitutions in the mail body (SMTPAPI Sub: Associative Array)

    Finally this is assuming you are sending email directly via our SMTP or Web API. If you are using our newsletter feature, mail-merge like substitution is possible by using Custom Tags in the newsletter template.

    -- Joe

    SendGrid

    0 讨论(0)
提交回复
热议问题