HiFiForum.nu
Home | Forums | Profile | Register | Active Topics | Links | Members | Articles | PM | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

Private Messages
You must log in to check messages
 All Forums
 Diverse
 HiFi Off Topic - Fritt Forum
 Outlook fråga
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

U1
Member

3319 Posts

Posted - 2013/08/01 :  10:08:30  Show Profile Send U1 a Private Message  Reply
Jag vill skicka ett mail till flera mottagare utan att de andra ser att det gått till fler än dem själva. Jag vill inte använda BCC då det syns att de endast blivigt CCade, det skall se ut som om mailet endast är skickat till dem. Någon som vet hur man gör detta i Outlook?

tomano58
Member

455 Posts

Posted - 2013/08/01 :  11:27:33  Show Profile Send tomano58 a Private Message  Reply
Vad jag vet så är enda sättet att använda BCC eller så skickar du dem ett och ett om det nu är så känsligt.
Go to Top of Page

ztenlund
Administrator, RödaTråden-vinnare, 300.000-klubben

8779 Posts

Posted - 2013/08/01 :  11:35:26  Show Profile Send ztenlund a Private Message  Reply
Möjligen mail merge, annars får du nog leta reda på någon plugin/add-in.

Har du synpunkter på något? Hör gärna av dig via PM!
HiFiForum.nu's
Artikelregister | Regler
Go to Top of Page

tomano58
Member

455 Posts

Posted - 2013/08/01 :  16:03:51  Show Profile Send tomano58 a Private Message  Reply
Finns ju en del program att hitta som kan göra mailutskick till en lista med mottagare och det ser ut som att de är skickade ett och ett (vilket de också är)
Go to Top of Page

EngelholmAudio
Member

8209 Posts

Posted - 2013/08/01 :  18:00:50  Show Profile Send EngelholmAudio a Private Message  Reply
Firefox + mailmerge har sett till att många distributörer och andra världen om, har fått EA-info.

Äger, driver och är engelholm audio (i Blekinge).
Egna produkter, Krell, ARC. Akustikkonsultation medelst Svanå's produkter.
Bara för att det går att hänga på väggen betyder det inte att den har bra akustiska egenskaper som främjar musikupplevelsen!
Go to Top of Page

U1
Member

3319 Posts

Posted - 2013/09/09 :  21:08:38  Show Profile Send U1 a Private Message  Reply
Excel löste det, hittade ett macro för detta :) Blev skitbra!
Go to Top of Page

Gaffa
fd. Mabuse

1455 Posts

Posted - 2013/09/15 :  11:45:50  Show Profile  Visit Gaffa's Homepage Send Gaffa a Private Message  Reply
Dela gärna med dig av lösningen...
Vi är fler som vill veta.

Skeptic Friends Network
"When the going gets tough, the tough get duct-tape..."

"När Höginkomsttagarna kallar sig arbetarparti måste även sagoboksförfattarna ana nya läskretsar..." - Arne Anka
Go to Top of Page

Pac
200.000-klubben

22011 Posts

Posted - 2013/09/15 :  16:56:50  Show Profile  Visit Pac's Homepage Send Pac a Private Message  Reply
I excel? Det där vore intressant att veta!

// Per Adelsson, pac(a)hififorum.nu, Admin och ägare HiFiForum.nu
// HiFiForum.nu's regler, Artikelregister

Go to Top of Page

Beat
Member

1505 Posts

Posted - 2013/09/15 :  18:13:21  Show Profile  Visit Beat's Homepage Send Beat a Private Message  Reply
Är också intresserad av det macro:t!

Du når oss på Lazy Boy hær:

sales@lazyboyaudio.no

https://www.facebook.com/lazyboyaudio/

http://www.lazyboyaudio.no/
Go to Top of Page

U1
Member

3319 Posts

Posted - 2013/09/16 :  10:41:14  Show Profile Send U1 a Private Message  Reply
Funkar sjukt bra, nu har jag byggt vidare på detta men här är grunden:

Sub Test2()
'For Tips see: http://www.rondebruin.nl/win/winmail/Outlook/tips.htm
'Working in Office 2000-2013
Dim OutApp As Object
Dim OutMail As Object
Dim cell As Range

Application.ScreenUpdating = False
Set OutApp = CreateObject("Outlook.Application")

On Error GoTo cleanup
For Each cell In Columns("B").Cells.SpecialCells(xlCellTypeConstants)
If cell.Value Like "?*@?*.?*" And _
LCase(Cells(cell.Row, "C").Value) = "yes" _
And LCase(Cells(cell.Row, "D").Value) <> "send" Then

Set OutMail = OutApp.CreateItem(0)

On Error Resume Next
With OutMail
.To = cell.Value
.Subject = "Reminder"
.Body = "Dear " & Cells(cell.Row, "A").Value _
& vbNewLine & vbNewLine & _
"Please contact us to discuss bringing " & _
"your account up to date."
'You can add files also like this
'.Attachments.Add ("C:\test.txt")
.Send 'Or use Display
End With
On Error GoTo 0
Cells(cell.Row, "D").Value = "send"
Set OutMail = Nothing
End If
Next cell

cleanup:
Set OutApp = Nothing
Application.ScreenUpdating = True
End Sub

Se mer info i denna länk:
http://www.rondebruin.nl/win/s1/outlook/bmail5.htm
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
HiFiForum.nu © HiFiForum.nu except: Logos and Trademarks are property of their owners, Comments are property of their posters Go To Top Of Page
Denna sida genererades på 0.16 sekunder. Snitz Forums 2000