Sendgrid - BCC API будет удален из настроек почты
Я использую Sendgrid в своем приложении Rails для отправки электронных писем. Я получил письмо от Сенгрида, в котором говорилось, что:
We’re emailing you with an update concerning the retirement of the BCC feature of our Email API. Our records show that you are still using the BCC feature.
If our previous correspondence regarding the removal of BCC did not make it your way, we apologize. We strive to provide thorough communication and ample warning of feature deprecations and removals. We recognize the change caught some customers by surprise.
To help you make any necessary changes to your sends, the BCC feature under settings will be available until June 22nd, 2020. This feature is now unavailable from the UI and only accessible via API call. We understand that removing a service or feature requires time on the part of our customers, and we hope that extending the availability of BCC is helpful.
Again, the BCC feature will be fully removed June 22nd, 2020.
Как я могу теперь использовать функцию BCC в Sendgrid?
1 ответ
Персонализация Объект рубиновой Api сделать работу. Это позволит вам установить BCC программно.
Я сделал необходимое обновление в своем Java-приложении вот так.
final Personalization mailPersonalize = new Personalization();
mailPersonalize.addBcc(yourBcc);
final Request request = new Request();
final Mail mail = new Mail();
mail.addPersonalization(mailPersonalize);
request.setBody(mail.buildPretty());
final Response response = sendGrid.api(request);
Если вы используете персонализацию для установки BCC, удалите ее, так как она будет устаревшей. Я надеюсь, это поможет.