2
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?

Power Appsでmailtoを使う時の注意点

Last updated at Posted at 2025-06-09

緒言

Power Appsから余計なコネクタ使わずにさらっとメール配信できるmailto。結論から言うと、EncodeUrl()しておけば解決!

問題点と解決策

こんなケースで、
image.png

ダメな例

Launch($"mailto:[メールアドレス]?subject=P & Gってなんの略?&body=答えはこちら%0A{ThisItem.url}")

日本語は危険。&は絶対ダメ。下図のようになります。
image.png

良い例

Launch($"mailto:[メールアドレス]?subject={EncodeUrl("P & Gってなんの略?")}&body={EncodeUrl("答えはこちら")}%0A{EncodeUrl(ThisItem.url)}")

日本語もurlもエンコード。下図のようにキッチリ。
image.png

結言

転ばぬ先のEncode。

2
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
2
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?