Outlookに記載してあるリンク先に飛びたい

image
画像のようにoutlookに記載してあるURLをクリックしてリンク先に飛びたいです。
リンクはメールごとに変わるのですが、どのようにすればいいでしょうか?

@once10201029,

If there is going to be only one link in the email body, you can use this in Assign activity to get URL from the email body.

stringVariable = System.Text.RegularExpressions.Regex.Match(emailMessage.BodyAsHtml.ToString,“https://figma[^'”\s]+").Value

リンクが2つあるのですが、その場合はどうすればいいですか?

@once10201029

Try this

matchesVariable of type - System. Text.RegularExpressions.MatchCollection

matchesVariable =System.Text.RegularExpressions.Regex.Matches(CurrentMail.BodyAsHtml.ToString,"\bhttps?://[^\s<>""']+")

Now use For Each activity to iterate through all the links.

翻訳が上手く機能しないんですが、
matchesVariable =System.Text.RegularExpressions.Regex.Matches(CurrentMail.BodyAsHtml.ToString,“\bhttps?://[^\s<>”“']+”)

上記は何のアクティビティのどこに書くんでしょうか?

@once10201029,

Use it like this.

[/quote]

image

IstEmailsとはなんですか?
設定した変数画面を見して頂きたいです。

@once10201029,

lstEmails will be your email messages collection you want to iterate. You can get the value for it using Get Outlook Mail Messages activity.

Here are the variables.

遅くなってしまい申し訳ございません。


同じ用に作成してみましたがエラーがでてしまいます、、、

@once10201029,

Change the datatype of lstEmails to IEnumarable<MailMessage>

ありがとうございます。
ここまでは同じように作成ができました。
リンク先に飛ぶためのアクティビティは何を追加すればよいのでしょうか?
(この状態で動かしても何も起きません)

@once10201029,

Get Outlook Mail Messages activity will give you messages in the type of IEnumarable<MailMessage>

item_check.xaml (22.4 KB)

現在ここまで作成していますが、これ以上追加するものはありますか?