The Shadow Posted August 18, 2007 Posted August 18, 2007 Now that FMServer 9 can run scripts, has anyone had any success sending email from server. Are the SMPTit or MailIt plugins capable of sending email from a server script?
mr_vodka Posted August 18, 2007 Posted August 18, 2007 I havent tested this, but it is also something that I am curious about. I wouldnt see why it couldnt be done. I am waiting for the day that FM could do this natively. : There was some talk at DevCon about it being a possible enhancement for a future release, but you probably already may know that. lol.
The Shadow Posted September 14, 2007 Author Posted September 14, 2007 Just to let everyone know, I ended up using the zippShell plugin from FM9 server to call a perl script to handle sending the email via the unix mail (/usr/bin/mail). [The perl script also ftp's a database backup offsite, then sends a simple email out saying that it did so.] I asked Clay about this issue in general - he said any plugin would run from server as long as it doesn't try to make any UI calls (like, to bring up a license dialog).
Hammerton Posted September 25, 2007 Posted September 25, 2007 The folks at FMWebSchool have created an easy to use Dreamweaver extension module that writes php pages to send email. It is quite versatile and easy to install and use. It allows you to send all sorts of automatic emails like you could back inthe day when you were running FM5Ultd with the SMPTit plugin (oh, for those simpler times). You have to have the FMStudio extension installed for the email module to work. For what they do, these products are a steal. I have no prayer of writing my own php without these aids, but even if I knew what I was doing, writing that crap has got to be tedious.
Baloo Posted September 25, 2007 Posted September 25, 2007 sending mail via PHP is fairly straight forward. <?php $to = '[email protected]'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: [email protected]' . "rn" . 'Reply-To: [email protected]' . "rn" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?> more details here: http://us2.php.net/manual/en/function.mail.php
Newbies dodgem340 Posted September 27, 2007 Newbies Posted September 27, 2007 I am interested in sending email from FSA...we have some online registrations that submit a reply when records have been added. Using older versions of Filemaker with plug-ins, this has been possible, however with FSA9 we are going to be converting the databases over and I need to make sure things will work. I have downloaded SMTPit 4 and tested it with Filemaker Advanced 9 and it works fine. I have placed the plug-in the server extension folder, and FSA recognizes that it is there. However when I go to enable the plug-in, Database Server crashes. Any ideas...? We are running OS X server.
The Shadow Posted October 9, 2007 Author Posted October 9, 2007 Yes, SMPTit and some of the other plug-ins try to bring up UI (for licensing or configuration) which doesn't work when it runs on server. I ended up using the zippScript plug-in to run a perl script to send email (via /usr/bin/mail on MacOS X). ZippScript
xochi Posted October 18, 2007 Posted October 18, 2007 I'm not done yet, but having promising results using the "Mail.it" plugin, installed on the server and then operated using server-scheduled scripts. I'll do a writeup when it's all working.
Newbies Skyler Posted November 21, 2007 Newbies Posted November 21, 2007 Hi, it's would be intresting for me to. Any success? BR Skyler
Recommended Posts
This topic is 6212 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 accountSign in
Already have an account? Sign in here.
Sign In Now