Anonymous Email

longytravel

Board Regular
Joined
Aug 2, 2011
Messages
68
Hi Guys.

I have developed a fairly straightforward 'feedback form'

I send the sheet out to people who i have worked with so they can rate my performance it has drop down boxes 0 - 10 etc.

They then press a button and then it emails it back to me.

Is there anyway i can make it return the sheet back to anonymously in outlook - effectively i don't want to know who has provided the feedback

Any ideas??

Thanks
 
Thanks!

Great out of the box thinking!

It nearly works.....i get a message box asking if i want outlook to send the email - i should select no if it is not from atrusted source.

The process then jsut goes round and round until i cancel it........

I think the process just needs tweaking to make it work if you can have another quick think about it?!!
 
Upvote 0

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Thanks!

Great out of the box thinking!

It nearly works.....i get a message box asking if i want outlook to send the email - i should select no if it is not from atrusted source.

The process then jsut goes round and round until i cancel it........

I think the process just needs tweaking to make it work if you can have another quick think about it?!!

Thanks - out of the box thinking is my speciality :)

As I say it was untested - I'll do some quick testing now and get back to you.
 
Upvote 0
Ok try this:

Code:
Sub CustomRule_Forward(feedbackMail As Outlook.MailItem)

Dim strId As String, olNS As Outlook.NameSpace

Dim forwardItem As Outlook.MailItem
strId = feedbackMail.EntryID
Set olNS = Application.GetNamespace("MAPI")
Set forwardItem = olNS.GetItemFromID(strId).Forward

forwardItem.Display
forwardItem.Recipients.Add "dean.allison@stockgrn.bham.sch.uk"
forwardItem.Subject = "New Feedback - Sent By Rule"

forwardItem.Body = ""

forwardItem.Send

End Sub

As long as the subject in the code above is different to the subject sent by your form you shouln't get a problem.
 
Upvote 0

Forum statistics

Threads
1,225,072
Messages
6,182,695
Members
453,132
Latest member
nsnodgrass73

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top