• Hi, I would like to ask you to implement an automatic retry of sending an email if an error occurred the first time. Some methods (e.g. Google API) do not allow you to send mails quickly, even if they are small amounts (e.g. you cannot send more than 10 mails in 10 seconds, otherwise Google will block the connection for a few seconds). My suggestion for a function is this: in case of an error, the plugin pauses, waits X seconds and tries to send the same email again. If it succeeds, it tries to process another e-mail.

    The parameters to be adjusted would be such as:

    • Should I resend the e-mail in case of an error? {true/false}
    • After how many seconds to try again? {number}
    • Pause queue on error? {true/false}
    • After how many seconds to resume work? {number}
    • After how many failed attempts to send an email with an error give up? {number}
  • The topic ‘Automatically resend error mails’ is closed to new replies.