Send Gmail to Multiple Addresses 2018-04-24

Simple Task to send email to more than one email address

  1. Tasker Pro
    Currently it seems that AutoMail / Gmail can only send to one address at a time.

    This Task lets you input a list of as many email addresses as you'd like, and it will send them all out. Simply list all your email recipients in the first Action.

    DESCRIPTION:


    Code (Text):
       
            <✔ PUT ALL YOUR EMAIL ADDRESSES HERE, SEPARATED BY A COMMA>
            A1: Array Set [ Variable Array:%list Values:bob@gmail.com,steve_jones@gmail.com Splitter:, ]

            <✔ EMAIL SUBJECT>
            A2: Variable Set [ Name:%subject To:Hello World  ]

            <✔ EMAIL TEXT / BODY>
            A3: Variable Set [ Name:%text To:Test text stuff etc  ]

            <BEGIN ↘️>
            A4: Anchor

            A5: For [ Variable:%email  Items:%list() ]

                A6: AutoGMail Send [ Configuration:Recipient: %email
                       Subject: %subject
                       Text: %text Timeout (Seconds):20 ]

                  <(ACTIVATE FOR A VERY LONG LIST OF EMAILS IF NEEDED)>
                    A7: [X] Wait [ MS:200 Seconds:0 Minutes:0 Hours:0 Days:0 ]

            A8: End For