luyadev/luya-newsletter2go

LUYA 用于 newsletter2go 服务的库。

安装: 676

依赖关系: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 1

公开问题: 0

类型:luya-extension

1.1.0 2020-03-31 17:54 UTC

This package is auto-updated.

Last update: 2024-09-06 20:39:58 UTC


README

LUYA Logo

LUYA Newsletter2Go

LUYA Latest Stable Version Total Downloads

这是一个订阅小部件和用于与 newsletter2go.com 服务交互的帮助方法。

安装

通过 composer 安装扩展

composer require luyadev/luya-newsletter2go

用法

<?php $widget = SubscribeFormWidget::begin([
  'accessToken' => 123,
  'listId' => 123,
  'username' => '...',
  'password' => '...',
  ]) ?>
    <?php if ($widget->isSubscribed): ?>
        <div class="alert alert-success">Thanks, your email address has been added to the subscription list.</div>
    <?php else: ?>
        <?php $form = ActiveForm::begin(); ?>
             <?= $form->field($widget->model, 'email'); ?>
             <?= Html::submitButton('Submit'); ?>
        <?php $form::end(); ?>
    <?php endif; ?>
<?php $widget::end(); ?>