Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7409 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Thank you, I figured out the above syntax for it to work, but is there anyway to do this without having the email client open. I mean is there any way to do this with just the browser? Unfortunately as soon as you use the mailto: text in the string it immediatley opens my default email program.

Thank you for your help!!

Posted

No. A mailto URL always opens your default email client AFAIK. So does FileMaker's Send Mail script step. The only way I know to get around it is to use a plugin such as SMTPit.

  • 2 weeks later...
Posted

For Macs, there are a couple possibilities. There may be a command line method; but I don't know it. There is however a free AppleScript Scripting Addition. I've messed about with it and it seems to work.

http://osaxen.com/xmail.html

AppleScript Dictionary:

Send easily a mail from Applescript, supports cc, bcc,file attachments, authentication

send mail: send mail

send mail

to a list of string -- the recipients of the mail

from string -- the author of the mail

subject Unicode text -- the subject of the mail

body Unicode text -- the body of the mail

SMTP server string -- the smtp server to send the mail (smtp.foobar.com)

[username string] -- your login if the server require an authentication

[password string] -- your password if the server require an authentication

[authentication plain/login/crammd5/anonymous/auto] -- the type of authentication mechanism to use

[ssl boolean] -- wether you want to use SSL encryption

[ssl verification verify none/verify peer] -- what kind of SSL verification to do with your certificates

[pem certificate file specification] -- where is your PEM certificate, can be left blank if using 'verify none'

[pem certificate directory file specification] -- where is your directory containin PEM certificate, can be left blank if using 'verify none'

[timeout string] -- abort after how many seconds ? (default is 60 seconds)

[port string] -- the port on which runs the SMTP server (25 is the default)

[cc a list of string] -- the list of cc recipients of the mail {cc1,cc2,

This topic is 7409 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.