Copied to clipboard

Flag this post as spam?

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


  • Lefteris 89 posts 42 karma points
    Dec 11, 2012 @ 14:48
    Lefteris
    0

    Name of sender

    Where can I define the name of the sender?

    eg: <myname> [email protected]

  • Markus Johansson 1918 posts 5785 karma points MVP c-trib
    Dec 12, 2012 @ 19:21
    Markus Johansson
    0

    Hi Lefteris!

    Thats a good question! =D

    No one has ever requested this but it's probably something that we need to add to the package in upcomming versions.

    // Markus

  • Lefteris 89 posts 42 karma points
    Dec 20, 2012 @ 17:25
    Lefteris
    0

    Is there any plan for this update?

    Any help on doing this on my own?

    My customer need this asap

  • Markus Johansson 1918 posts 5785 karma points MVP c-trib
    Dec 20, 2012 @ 19:25
    Markus Johansson
    0

    Hi!

    This will be included but it will take until the next release (at least mid january). But if you are fine with hardcoding the name (or store in web.config or so). This render task would probably do the job. Please read more about render tasks in the documentation and have a look at this video: http://www.youtube.com/watch?v=Qp3SMrD4bjc

    namespace NewsletterStudio.Services.RenderTasks.Tasks
    {
        public class AddMailMessageSender : RenderTask
        {
            
            public override void ProcessPreRender(RenderResult renderResult, RenderTaskParameters parameters)
            {
                // Do nothing
            }
    
            public override void ProcessUniqItem(RenderResult renderResult, RenderTaskUniqItemParameters parameters)
            {
                parameters.MailMessage.From = new MailAddress("[email protected]""My Namesonn");
    
                base.ProcessUniqItem(renderResult, parameters);
            }
    
        }
    }

     

  • Lefteris 89 posts 42 karma points
    Jan 22, 2013 @ 14:35
    Lefteris
    0

    Any news about a new version with sender name support?

  • Markus Johansson 1918 posts 5785 karma points MVP c-trib
    Jan 22, 2013 @ 14:40
    Markus Johansson
    0

    Hi!


    Did you try the solution above?

    Yes, the work is in progress but we need to support the new Umbraco version (v6) in the next release. I guess you can count on a new release comming in about 1-3 weeks after the RMT-release of Umbraco 6.

    / Markus 

  • Markus Johansson 1918 posts 5785 karma points MVP c-trib
    Feb 01, 2013 @ 11:34
    Markus Johansson
    0

    Hi!

    Just released version 1.3.2 (documentation is comming) and this issue is solved. We've also added a new feature the "Newsletter Studio Data Type" which makes it possible to send out a newsletter from a tab in the content section. The content of the newsletter will be based on the content in the node item that has this tab. Tutorial is comming =D

    http://our.umbraco.org/projects/backoffice-extensions/newsletter-studio

    Have a nice weekend! =D

Please Sign in or register to post replies

Write your reply to:

Draft