McPhale
McPhale
So I ended up coming up with something like this that seems to work; not sure if there's a better way to do it or not. Startup.cs ```cs var configSender...
You can generate a list of Address (Address is in FluentEmail.Core.Models) and then pass it into .BCC(). Something like this. ```csharp _BCCAddresses = config.GetSection("BCCAddresses").Get().Select(ea => new Address { EmailAddress =...
No worries :) you can use string.split() for that. Here's an example ```csharp var emailString = "[email protected];[email protected];[email protected]"; var listOfAddress = emailString.Split(";").Select(ea => new Address { EmailAddress = ea }).ToList(); ```
It's just not implemented yet; see https://github.com/lukencode/FluentEmail/pull/180 Looks like there's already a pull request active for it.
[`2569026` (#180)](https://github.com/lukencode/FluentEmail/pull/180/commits/2569026f33c0c3ad2e33cf6c21d99714345936a5)
> AddSmtpSender doesn't set the DefaultSender of Email > > https://github.com/lukencode/FluentEmail/blob/master/src/Senders/FluentEmail.Smtp/FluentEmailSmtpBuilderExtensions.cs Should this be opened as a separate issue?
I would also like to see this implemented
Cool! If I have some extra free time this week I can test it out, thanks for taking a look
Ok, I managed to get a debugger set up and stepped through the code in the new branch. It doesn't look like the changes you made in show.rs are ever...
Hello; had an issue with my machine and had to get a new one and set it all up, so I'm just now looking at this again. Here is my...