Outlookで受信したメールのリンクをクリックする一連の流れを作成したいです
①Outlookに指定のアドレスからメールがくる
②メールを指定のフォルダに移動する
③指定のフォルダに移動されたメールを開いてリンクをクリックする
④これをメールがくる度に繰り返す
Hi @n-ishii
Instead of directly clicking the URL in the Mail body, Use the Regular expressions to extract the required URL and use the Use application\browser activity to launch the website.
Follow the below steps,
→ Use the Get Outlook mail message activity to read the mails from Outlook.
→ In the Filter option in Get Outlook mail message activity give the below expression to filter with sender mail address,
"[SenderEmailAddress] = 'give the sender mail address here'"
→ Use the For each activity to iterate the each mail in List of Mail Messages (Output of Get Outlook mail message activity)
→ Then use the Move Outlook Mail Message activity to move the mail from one folder to other folder.
→ Then use the Regular expressions to extract the Web URL from the Mail body.
→ Then use the Use application\browser activity to launch the Extracted Web URL.
Hope it helps!!
こんにちは
まず1ですが、常時メールがくるのを監視するイメージでしょうか?それともメールが来たのを見計らってプロセスを起動する形でしょうか?
前者であればARならトリガー系のアクティビティまたはURならOC上のトリガーを使うことになると思います。
2は以下で実現可能です。
3は、フォーマットがある程度固定であれば、メール本文を抽出して、そこからURLを直接あるいはHTMLメールならA要素を抽出してURLを抽出後、ブラウザを使用アクティビティでそのURLを開けば良いかと思います。
はい!上記が理想です
厳しい場合は常時メールがくるのを監視する方法でもよいです!
こんにちは
環境の確認になりますが
お使いのライセンスはUnattendedでしょうかAttendedでしょうか?
後者であれば、メールが来たのを見計らって実行するのは利用者になりますが。
前者の場合、メール到達のイベントで起動する方法もありますが、環境に依存します。
AutomationCloud上のOCをご利用でしょうか?メールサーバーはどちらにありますでしょうか?Microsoft365、オンプレ等々