-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MvcMailer FileLoadExcpetion in MVC4 #42
Comments
I need to check this out. Is this a problem that you see on the cloud only? Sent from my iPhone On 2012-03-15, at 4:38 AM, ahordijk
|
Yes local on my developing pc this problem does not occur. Hope you can solve this One. ----- Reply message ----- I need to check this out. Is this a problem that you see on the cloud only? Sent from my iPhone On 2012-03-15, at 4:38 AM, ahordijk
Reply to this email directly or view it on GitHub: |
Is this bug fixed or is there an estimated time that it is fixed? |
@smsohan Is there some more information about this? |
Any update available? |
@smsohan Can you give me any feedback if you are going to fix this one? |
Ran into this today - sent pull request -> #54 to address. |
Thanks for this. I haven't been able to spend much time on MvcMailer off cool, I will push an update.Sohan On Wed, Aug 22, 2012 at 10:59 PM, Josh Schramm notifications@github.comwrote:
|
Cool. I also noticed the web.config in Views is writing wrong, going to look at that next. I think there's another issue. I didn't generate a new nuget package in source control, i did locally to test but I didn't want to impose a new version or anything so you may need to do that. |
I'm currently getting hosed by this. I checked the pull request and it looks pretty solid to me. |
I agree any chance we can get this pull request accepted? |
When using MvcMailer in the Cloud and publishing the package the state of the publish stays in cycling.
The Solution is created with MVC4. After numerous attemps intellitrace noted that it could not find / load System.Web.Mvc version 3.
After troubleshooting all included nuget packeges in the solution we commented all MvcMailer specific code (its base class and implementation). At this point the application can be hosted in the cloud with MVC4 but without the MvcMailer :-(
My question is do you reference explicitly to System.Web.Mvc version 3 in your code? If so can you change this so MvcMailer can be used with MVC4?
Steps to reproduce:
public class TestMailer : MailerBase
{
public TestMailer(): base()
{
MasterName="_Layout";
}
}
The text was updated successfully, but these errors were encountered: