- Registriert
- 15.11.04
- Beiträge
- 4.121
Hallo Zusammen,
habe folgendes Problem: Ich steuere Eudora mittels Applescript aus einer Filemaker Datenbank heraus an. Eudora soll nichts anderes machen als E-mails aus Filemaker zu verschicken. Folgender Quelltext des Applescriptes:
tell application "FileMaker Pro"
tell current record of database 1 of document 1
set theRecipient to cell "BCC"
set theSubject to "der Betreff der Mail"
set theContent to cell "Quelltext (hier ist ein HTML Quelltext hinterlegt)"
end tell
end tell
tell application "Eudora"
make message at end of mailbox "out"
set field "to" of message 0 to "E-mail Adresse des Absenders"
set field "bcc" of message 0 to theRecipient
set field "from" of message 0 to "E-mail Adresse des Absenders"
set field "subject" of message 0 to theSubject
set body of message 0 to theContent
queue message 0
end tell
So nun mein Prob: Eudora nimmt die mail zwar an kann sie aber nicht rausschicken.
Folgende Meldung kommt:
450 4.2.0 said the Recipient already exist
??? Kann isch nix mit anfangen...
Ach ja Filemaker 7 und Eudora 6.2.3
Gruß Schomo
habe folgendes Problem: Ich steuere Eudora mittels Applescript aus einer Filemaker Datenbank heraus an. Eudora soll nichts anderes machen als E-mails aus Filemaker zu verschicken. Folgender Quelltext des Applescriptes:
tell application "FileMaker Pro"
tell current record of database 1 of document 1
set theRecipient to cell "BCC"
set theSubject to "der Betreff der Mail"
set theContent to cell "Quelltext (hier ist ein HTML Quelltext hinterlegt)"
end tell
end tell
tell application "Eudora"
make message at end of mailbox "out"
set field "to" of message 0 to "E-mail Adresse des Absenders"
set field "bcc" of message 0 to theRecipient
set field "from" of message 0 to "E-mail Adresse des Absenders"
set field "subject" of message 0 to theSubject
set body of message 0 to theContent
queue message 0
end tell
So nun mein Prob: Eudora nimmt die mail zwar an kann sie aber nicht rausschicken.
Folgende Meldung kommt:
450 4.2.0 said the Recipient already exist
??? Kann isch nix mit anfangen...
Ach ja Filemaker 7 und Eudora 6.2.3
Gruß Schomo