I am using MVCMailer plugin for generating emails from my asp.net MVC3 application and the settings is to save mails in PickupDirectory and the application is saving the E-mail type files inside the directroy .(.eml files in the directory)
<smtp from="mygmailid@gmail.com" deliveryMethod="SpecifiedPickupDirectory">
<network host="localhost:65436" />
<specifiedPickupDirectory pickupDirectoryLocation="C:\MyAppFolder\mailPickup"/>
</smtp>
And this is the controler action creating the email file inside C:\MyAppFolder\mailPickup
public ActionResult About()
{
UserMailer.Welcome().Send(); //Send() extension method: using Mvc.Mailer
return View();
}
The question is now how can i send the mail to the end user from this directory? Do i need to write custom scripts to send it or all the Email files will be delivered automatically?
If i have to write the scripts how can i do this? any sampleS?