Autor Thema: Signatur in E@Mails  (Gelesen 2525 mal)

Offline GF

  • Frischling
  • *
  • Beiträge: 2
Signatur in E@Mails
« am: 08.05.02 - 13:39:14 »
Hallo Leute!!

Folgende Frage:

Wie kann ich in Lotus Notes 4.x Signaturen die dann automatisch in jeden Mail erscheinen sollen erstellen oder schon bestehende ändern? ??? ???

Ich weis das das geht nur benutzen wir jetzt LoNo 5.0.6a und ich muß jetzt nochmal wissen wie das in der früheren Version ging!!

Vielen Dank,
GF

Offline eknori

  • @Notes Preisträger
  • Moderator
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 11.728
  • Geschlecht: Männlich
Re: Signatur in E@Mails
« Antwort #1 am: 08.05.02 - 13:45:07 »
Dies war mal ein Tip auf Lotus411

Description:   If a user creates a piece of stationery called "Signature" then all new mail memo's should have that stationary as its template. Used to customise an individual users mail.

Method
On the Postopen event of a new memo check for the existence of the Signature stationery, note case. If it exists then close current blank memo and open stationery.

Two additions to the mail template are required.

1. A new hidden view called Sigs.
2. Script added to the Postopen event in Memo form.
      
Code:  Sigs View selection:-
SELECT PostedDate = "" & $MessageType = "" & !(ExcludeFromView = "D")

One column called Subject:-
@If(@IsAvailable(IsMailStationery); MailStationeryName; Subject)

Postopen event in memo form:-

Sub Postopen(Source As Notesuidocument)
Set uidoc = source
Call EmailOpen
Dim sigitem As Variant
Dim rtitem As Variant
Dim workspace As New NotesUIWorkspace
Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
Dim collection As NotesDocumentCollection
Dim V As NotesView
Dim VDoc As NotesDocument
Dim doc As NotesDocument
REM If new doc then continue......................
If uidoc.isnewdoc Then
Else
Exit Sub
End If
REM If stationery doc then don't continue...............
Set V=db.GetView("(Sigs)")
Set VDoc = V.GetDocumentByKey("Signature")
If VDoc Is Nothing Then
Else
Call uidoc.close
Set uidoc = workspace.editdocument(True,Vdoc)
End If

End Sub


und hier noch ein weitere Tip; ebenfalls Lotus411

A lot of people have wanted to have a signature file in
Notes mail. (This function is added in R5). We have
updated our mail template with the following code, and
told the users to make a signature file and place it in
C:\Notes\Signature.doc. The file must be in ASCII
Text format. (You can have other formats.). (Put a
template in your public MS-Word template folder,
and let your users personalize the document
(add / change names ++) and save it as
C:\Notes\Data\Signature.doc)

The mail template is updated, so that the forms
"Replay, Replay With History and Memo"
have got the new button "Import Signature File".

When the users click on the new button, the
signature file is imported into the message.

The code behind the buttom is:
@Command([TextSetFontFace];"Courier");
@Command([FileImport];"ASCII Text";"c:\\notes\\data\\Signature.txt")


=============================
At this point in time, this functionality is not inherent within notes. What you can do to get around this, you can add an action button to the form that would append this to the end of the memo

@Command([EditInsertText];@NewLine);
@Command([TextSetFontFace];"Courier");
@Command([TextSetFontSize];"10");
@Command([TextNormal]);
@Command([TextSetFontColor];[DarkBlue]) ;
@Command([FileImport];"ASCII Text";"c:\\sigs\\signaturefile.txt"))

Or in the send button add this fuctionality.

« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »
Egal wie tief man die Messlatte für den menschlichen Verstand auch ansetzt: jeden Tag kommt jemand und marschiert erhobenen Hauptes drunter her!

Offline GF

  • Frischling
  • *
  • Beiträge: 2
Re: Signatur in E@Mails
« Antwort #2 am: 08.05.02 - 13:56:17 »
Danke für deinen Tipp aber dazu sag ich nur hääää?!?!?

das ist doch auch irgendwie über die menüpunkte möglich gewesen aber ich weis absolutn nicht mehr über welche
« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »

Offline eknori

  • @Notes Preisträger
  • Moderator
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 11.728
  • Geschlecht: Männlich
Re: Signatur in E@Mails
« Antwort #3 am: 08.05.02 - 13:58:28 »
Die Signatur Funktion gibt es erst ab Notes 5; aber ich kann mich dumpf erinnern, dass es da mal einen Tip mit Smarticon gab; ich tauch mal ab zum Suchen

eknori
« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »
Egal wie tief man die Messlatte für den menschlichen Verstand auch ansetzt: jeden Tag kommt jemand und marschiert erhobenen Hauptes drunter her!

Offline Matze69

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 833
  • Geschlecht: Männlich
  • ... nicht´s ist unmöglich ...
Re: Signatur in E@Mails
« Antwort #4 am: 26.07.02 - 12:59:26 »
Das oben genannte "Feature" würde mich auch interessieren....
Eknori: Hast du schon etwas in den "Tiefen" gefunden?

Bitte um Hilfe.
Danke ;D
« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »

Offline Wipe

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 873
  • Geschlecht: Männlich
Re: Signatur in E@Mails
« Antwort #5 am: 26.07.02 - 14:59:17 »
« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz