お世話になります。
初めて投稿いたします。よろしくお願いいたします。初心者な質問で恐れ入ります。
現在、Zoomとの連携でウェビナーをHubSpotを活用して実行しております。
WFで特定のコンタクトプロパティにZoomからの応答をコピーさせて、以下のようなコードで自動返信メール内に「申込者専用のURL」を格納しております。
<div style="text-align: center">
<table border="0" cellpadding="0" cellspacing="0" style="display: inline-block">
<tbody>
<tr>
<td
align="center"
style="
padding: 12px 75px;
border: 2px solid rgb(255, 255, 255);
border-radius: 6px;
background-color: #eca300 !important;
"
>
<a
href="{{ personalization_token('contact.emcbd_film_contact', 'https://zoom.us/webinar/register/WN_P77qArPtQwCbGn3hNm2mEQ') }}"
target="_blank"
rel="noopener noreferrer"
data-auth="NotApplicable"
class="x_fs14"
title="ウェビナー参加リンク"
style="
display: inline-block;
word-break: break-word;
font-size: 16px;
font-weight: bold;
line-height: 26px;
text-decoration: none;
color: rgb(255, 255, 255);
"
data-ogsb="rgb(255, 136, 0)"
data-linkindex="1"
>
{{ contact.lastname }} 様専用 参加リンク
</a>
</td>
</tr>
</tbody>
</table>
</div>
上記のHTMLをカスタムモジュールにしたいと思っております。コードは書いたのですが、リンク要素の規定値を設定するにはやはりコンタクトプロパティ側の規定値を設定するほかないのでしょうか。
<div style="text-align: center">
<table border="0" cellpadding="0" cellspacing="0" style="display: inline-block">
<tbody>
<tr>
<td
align="center"
style="
padding: 12px 75px;
border: 2px solid rgb(255, 255, 255);
border-radius: 6px;
background-color: #eca300 !important;
"
>
<a
href="{{ (module.join_link)}}"
target="_blank"
rel="noopener noreferrer"
data-auth="NotApplicable"
class="x_fs14"
title="ウェビナー参加リンク"
style="
display: inline-block;
word-break: break-word;
font-size: 16px;
font-weight: bold;
line-height: 26px;
text-decoration: none;
color: rgb(255, 255, 255);
"
data-ogsb="rgb(255, 136, 0)"
data-linkindex="1"
>
{{ contact.lastname }} 様専用 参加リンク
</a>
</td>
</tr>
</tbody>
</table>
</div>
"module.join_link"は「コンタクトプロパティ」の選択を入れておりますが、別のモジュールをhref内に挿入するなどでできるのか?と思ったのですが、かなわずでした。
実現したいところとしては、href内でモジュールを作成するか何かで既定値リンクを挿入するためのテキストボックスを入れ込みたいというとことになります。
何かよい方法はありますでしょうか?誰もが間違えずに設定できるようにというところでモジュールを作成しております。不躾なご質問で恐れ入ります。何卒よろしくお願い申し上げます。
