Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Striping Email, and forwarding

Status
Not open for further replies.

Semperfi2004

IS-IT--Management
Mar 27, 2006
56
US
Does anyone know within MSExchange 2003, if you can receive an email, Strip out who it is from, then forward it back to the orginal user, without it knowing it knowing it went to someone else?

Example:
User1@ CompanyA.com sends an email to User2@CompanyB.com.
User2@CompanyB.com forwards the email to User3@CompanyC.com.
Then User3@CompanyC.com forwards the email back to User1@ CompanyA.com. Without knowing, User2@CompanyB.com was in the loop.
Thank you
 
Uh, if user 3 strips the forward header from user2, it will be erased.
But, it seems a bit silly, as user1 sends TO user2, user1 MUST know user2 was in the loop, as that is where they sent it to! They will only wonder why user3 was in the loop.

Besides, a mail from user1 to user2 forwarded to user3, forwared back to user1 will give user1 back the original mail, now what is the purpose of that?

Marc
If 'something' 'somewhere' gives 'some' error, expect random guesses or no replies at all.
Free Tip: The F1 Key does NOT destroy your PC!
 
It may sound silly, but there is a purpose. Without getting into long drawn out details, it all deals with a User1 changing their password, on User2's website.

We'd prefer the email reflect the change coming from us (User3), instead of User2 domain.

User2 has aggreed to forward User1's email to us(User3), so it could reflect that we(user3) reset their password for them.

The website that User2 has, has our Stamp on it. So, User1, doesn't even know that User2 is involved.


 
Send the email using CDO and you can specify what address to use as the sender.

Here is sample code. You merely need to pull in the user email address in the oTO variable and change the message if you don't like what I put. Also update the oMyIP to point to your SMTP server.

Code:
'==========================================================================
'
' NAME: SendMail.vbs
'
' AUTHOR: Mark D. MacLachlan , The Spider's Parlor
' URL: [URL unfurl="true"]http://www.thespidersparlor.com[/URL]
' DATE  : 4/2/2007
' COPYRIGHT (c) 2007 All Rights Reserved
'
' COMMENT: 
'
'    THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
'    ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED To
'    THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
'    PARTICULAR PURPOSE.
'
'    IN NO EVENT SHALL THE SPIDER'S PARLOR AND/OR ITS RESPECTIVE SUPPLIERS 
'    BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
'    DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
'    WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
'    ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
'    OF THIS CODE OR INFORMATION.
'
'==========================================================================


' What address do you want to be seen in the From field
oFrom = "Passwordmanager@company.com"
' Set the SMTP server IP 
oMyIP = "192.168.16.2" 
' Where do you want the message to be delivered 
oTo = "administrator@company.com" 
 
' Set the visual basic constants as they do not exist within VBScript. 
' Do not set your smtp server information here. 
Const cdoSendUsingMethod = "[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/sendusing",[/URL] _ 
cdoSendUsingPort = 2, _ 
cdoSMTPServer = "[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserver"[/URL] 
'Create the CDO connections. 
Dim iMsg, iConf, Flds 
Set iMsg = CreateObject("CDO.Message") 
Set iConf = CreateObject("CDO.Configuration") 
Set Flds = iConf.Fields 
'SMTP server configuration. 
With Flds 
.Item(cdoSendUsingMethod) = cdoSendUsingPort 
'Set the SMTP server address here. 
.Item(cdoSMTPServer) = oMyIP 
.Update 
End With 
'Set the message properties. 
With iMsg 
Set .Configuration = iConf 
.To = oTo 
.From = oFrom
.Subject = "Password Reset"
.TextBody = "Your password was reset " & Now
                        
End With 
'An attachment can be included. 
'iMsg.AddAttachment logfile 
'Send the message. 
iMsg.Send 
WScript.Quit

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
 
Hey Mark,
I think this may be what I am looking for, please let me know if I am correct on how this will work.

1. Joe@ACompany.com logs onto 2. Joe changes his password.
3. Instead of MyVender.com, Replying back with the changed Password to Joe@ACompany.com.
4. The Email is forword to My Company. In the following format:
From: Name@MyVender.com
To: DistList@MyCompany.com

Dear Joe@ACompany.com you new Password is: XXXXX.

5. With your VBScript. I can Edit the Email,Replace Name@MyVender.com in with DistList@MyCompany.com in the From: Field. and place Joe@ACompany.com in the To: Field. ? All in an Automated Process ?

Thank you.
 
Why not have your vendor simply send the email for you. They can set the from address to be that of your company. They can also CC or BCC your company. Give thier company rights to relay through your SMTP server and the message will be initiated from their end but actually sent from your end.

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
 
Hey Mark, thank you. I will ask. However, I think for whatever reason, they didn't want to do that for some reason.
Thank you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top