Click here to Skip to main content
15,890,557 members

Comments by Mark Vloerjans (Top 3 by date)

Mark Vloerjans 28-Jul-16 7:13am View    
No, when I have a From in the .eml and I want to send it via outlook, then I recieve a Undeliverable mail. When I manually remove the From in the .eml, Outlook picks a From by itself (from one of the accounts in outlook) and then the mail reaches its destination.

It's very strange. Because the mailadress that is provided in the .eml and the mailadress that outlook picks (if there isn't a From in the .eml) is the same. I totally don't understand...
Mark Vloerjans 28-Jul-16 6:52am View    
I can assure you this is not the case. I'm just looking for a solution for this problem. If there is another solution, that's more then fine for me. But at the moment I can't send such a mail.

When I don't have a 'From' and 'Sender' in the eml-file, outlook just picks a mailbox (mailadress) from the outlook-accounts as sender. And then it works.

Sending emails directly from the website is apparently not an option for the client where I work for.
Mark Vloerjans 28-Feb-14 2:19am View    
Deleted
I've got this in my "_Layout.cshtml":

@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)

And this is my "BundleConfig.cs":

bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));

bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));

// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));

bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));

bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));