Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Sander Wollaert 12 posts 52 karma points
    Nov 13, 2017 @ 08:40
    Sander Wollaert
    0

    Test email: multiple receiver e-mail addresses

    Hi,

    Is it possible at the moment to specify multiple e-mail addresses where the e-mail has to be send to? If not, is there any possibility to make the receiver field ';' or ',' seperated? Or by making it a tag editor.

    Thanks in advance.

    Sander

  • Markus Johansson 1914 posts 5761 karma points MVP c-trib
    Nov 13, 2017 @ 09:21
    Markus Johansson
    0

    Hi!

    No at the moment I would create a "test lits" and send for real, then copy it back into the draft-folder, that also good to make sure that all the "live"-render tasks works as the should.

    // m

  • Sander Wollaert 12 posts 52 karma points
    Nov 13, 2017 @ 09:25
    Sander Wollaert
    0

    The emails our customer is sending are coming from the content section. At the moment we are not allowing them in the newsletter studio section. To keep it simple for them. So making a copy isn't an option.

  • Markus Johansson 1914 posts 5761 karma points MVP c-trib
    Nov 13, 2017 @ 09:34
    Markus Johansson
    0

    Hi Sander!

    I see!

    I will add this to our backlog and include it in the next update but I can't give you an exact date for the release - how urgent is this for you?

  • Sander Wollaert 12 posts 52 karma points
    Nov 13, 2017 @ 09:46
    Sander Wollaert
    0

    Thanks for putting it on the backlog. I'll discuss the urgency with our customer and I'll keep you posted.

  • Tim 168 posts 372 karma points
    Mar 02, 2018 @ 16:54
    Tim
    0

    It'd be good to have as sending to test lists doesn't allow you to send a test of the email etc.

    For now you should be able to hack it and change SendTestEmail to something like this:

    [HttpPost]
    public HttpResponseMessage SendTestEmail(HttpRequestMessage request, SendNewsletterViewModel vm)
    {
        var sendTo = vm.SendTestEmailTo;
    
        if(string.IsNullOrWhiteSpace(sendTo))
        {
            return request.CreateResponse<ApiResponse>(HttpStatusCode.BadRequest, new ApiResponse()
            {
                Success = false,
                Message = this.Localize.Get("ns_couldNotSendDueToEmail")
            });
        }
    
        var emails = sendTo.Split(',', ';');
        foreach (var email in emails)
        {
            if (Common.IsValidEmail())
            {
                ... as it is now
            }
        }
    }
    

    It would be better doing the loop once the content has been customised but as a quick fix... :)

  • Markus Johansson 1914 posts 5761 karma points MVP c-trib
    Mar 06, 2018 @ 14:53
    Markus Johansson
    0

    Hi!

    @Tim do you mean the comma-separated list of emails? Thanks for the idea, I'll make sure to prioritize this in the backlog.

    Edit: I'll keep you posted here when it's included.

    // m

Please Sign in or register to post replies

Write your reply to:

Draft