0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

テキストテンプレートのまとめ

Last updated at Posted at 2023-07-02

Flowに関するまとめページに戻る


リッチテキストのような中にリンクを埋め込場合には同ブラウザ内に遷移しない

テキストテンプレートのプレーンテキストだとHTMLのタグが使えるみたいです。

新しいテキスト テンプレート リソースを作成し、この HTML コードをプレーン テキスト モードで追加します。

<a href="{!RecordLink_Formula}" target="_self">Click here</a>

URLを動的につくる

LEFT({!$Api.Enterprise_Server_URL_570} , FIND('/services', {!$Api.Enterprise_Server_URL_570})) & "/lightning/r/Account/"& {!$Record.Id} &"/view"

解答例

When using an email template, you need to obtain the ID ( Onboarding__c.Account__c ) of the related object that specifies the link destination as a formula field .

I want to make a URL from record in a custom object in lightning email template
https://salesforce.stackexchange.com/questions/400831/i-want-to-make-a-url-from-record-in-a-custom-object-in-lightning-email-template

The base URL can be referenced using the following formula.

LEFT({!$Api.Enterprise_Server_URL_600} , FIND('/services', {!$Api.Enterprise_Server_URL_600})) & "/lightning/r/Account/"& {!$Record.Id} &"/view"

各質問の結果をテキストテンプレート(プレーンテキスト)に配置してこのテキストテンプレートを使って更新する方法が可能です。

これを使えば改行もできるので、見やすい形で登録できると思います。

テキストテンプレートにその他のリソースの情報を参照するには、差し込み項目を使用します。

https://help.salesforce.com/s/articleView?id=sf.flow_ref_resources_texttemplate.htm&type=5

できないこと

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?