PDA

View Full Version : Sending E-mail as *.eml files


RodrigoReboucas
11-14-2009, 05:31 AM
Hi,

Is there any way to use the "Send Mail" step or any other step to send e-mail as *.eml files?
We currently have Visual Build Pro inside an environment that has no access to the internet or smtp server. This is what we use in our .NET apps (web.config) to generate the eml files:

<mailSettings>
<smtp deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="d:\EmlMails\" />
</smtp>
</mailSettings>

Is there any way to specify something simillar inside VBP?

Thanks!

kinook
11-14-2009, 07:14 AM
There isn't anything built-in to VBP for generating .eml files, but they're just text files like this (which you could create with the Write File action):

Date: 14 Nov 2009 11:31:57 -0000
To: x@y.com
Subject: my subject
From: a@b.com

Message body here...