画像のようにoutlookに記載してあるURLをクリックしてリンク先に飛びたいです。
リンクはメールごとに変わるのですが、どのようにすればいいでしょうか?
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つあるのですが、その場合はどうすればいいですか?
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<>”“']+”)
上記は何のアクティビティのどこに書くんでしょうか?
[/quote]
IstEmailsとはなんですか?
設定した変数画面を見して頂きたいです。
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.
Change the datatype of lstEmails
to IEnumarable<MailMessage>
ありがとうございます。
ここまでは同じように作成ができました。
リンク先に飛ぶためのアクティビティは何を追加すればよいのでしょうか?
(この状態で動かしても何も起きません)
Get Outlook Mail Messages
activity will give you messages in the type of IEnumarable<MailMessage>
item_check.xaml (22.4 KB)
現在ここまで作成していますが、これ以上追加するものはありますか?