18
Thu, Apr
5 New Articles

TechTip: PHP Delivers mail() on IBM System i

Web Languages
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

PHP, the popular Web development language, has long provided a built-in function, mail(), to send email messages. Until recently, this function was available only on non-System i platforms. The limitation applied both to home-grown System i PHP versions and to beta releases of Zend Core for i5/OS (the PHP distribution by IBM and Zend).

Users of PHP on System i can now rejoice. The GA release of Zend Core for i5/OS, introduced in August 2006, implements mail().

Why Is mail() Necessary?

Although alternatives such as PHPMailer provide ample features, these substitutes take more effort to set up. More important, some software packages are programmed to use mail() and will not operate without it.

Implementation on System i

Most UNIX systems contain a sendmail program. The mail() function takes advantage of this by sending messages through sendmail. On systems lacking sendmail, such as Windows and System i, Simple Mail Transfer Protocol (SMTP) does the job.

Function Definition and Example

The mail() function takes four parameters:

  • To—Recipient's address
  • Subject—Subject of the message
  • Message—Message body
  • Headers—Optional catch-all parameter, responsible for most other message settings, including the sender's email address ("From:") and any special encoding. When messages contain attachments or HTML, this parameter can become complex.

All four parameters are shown in this short PHP program:

Configuration

PHP.INI contains default mail settings. It can be found at /usr/local/zend/Core/etc/php.ini.

PHP.INI has three mail settings:

  • SMTP—Name of an SMTP server, such as System i's included SMTP service, to send mail through (e.g., mail.myserver.com)
  • smtp_port—Port number used by SMTP server (default: 25)
  • Sendmail_from (optional)—Default "from" email address to use when mail()'s "headers" parameter does not specify one. Any address can be used. The server does not check its validity (e.g., This email address is being protected from spambots. You need JavaScript enabled to view it.). Note: Although messages are not required to be "from' anyone, messages lacking a "from" address may be seen as spam.

The three settings appear in PHP.INI under [mail function] like this:

[mail function]
SMTP=mail.myserver.com
smtp_port = 25
sendmail_from = This email address is being protected from spambots. You need JavaScript enabled to view it.

To change these settings, either edit the INI directly or use Zend Core's Web-based administration console.

The EDTF (Edit File) command allows editing of PHP.INI from a command line:
EDTF /usr/local/zend/Core/etc/php.ini

A PC-based text editor will also work, given adequate authority to PHP.INI.

Zend Core provides a Web-based control panel to edit these settings, located at
http://www.domain.com:8000/ZendCore/ (where www.domain.com is the appropriate domain name) on the PHP Configuration page (Figure 1).

http://www.mcpressonline.com/articles/images/2002/seiden_alan_techtip_PHP_mailV300.jpg

Figure 1: The PHP Configuration page allows editing of sendmail_from, SMTP, and smtp_port. (Click image to enlarge.)

Changes to PHP.INI will take effect after the Apache server is restarted. Apache can be restarted with the Restart Server link in the Web interface and with Zend Core's Apache menu: GO ZENDCORE/ZCAMENU.

Set Options Dynamically with ini_set()

PHP's ini_set() function temporarily sets a given configuration option. Ideal for altering options dynamically, and in installations unable to change PHP.INI, ini_set() affects options for the duration of the program that invoked it.

ini_set() takes two parameters:

  • VarnameVariable/option to change
  • Newvalue—Value to change to

The following lines of code show how to set the SMTP server and "from" address within a PHP function.
ini_set("SMTP","mail.domain.com"); // note: “SMTP” must be upper case.
ini_set("sendmail_from","This email address is being protected from spambots. You need JavaScript enabled to view it.");

Troubleshooting

If mail() does not work as expected, clues may be found in PHP's error log:
/usr/local/zend/Core/logs/php_error_log

The error log may be viewed with a text editor or this command:
DSPF '/usr/local/zend/Core/logs/php_error_log'

mail() vs. Alternatives

As mentioned earlier, mail() is not the only way to send mail in PHP. Fuller-featured alternatives include the following:

PHPMailer
PHP Extension and Application Repository (PEAR) Mail (recommended by the official mail() function page for sending HTML or complex emails)

Advantages of mail():

  • It's included with PHP; no installation and little configuration needed.
  • One line of code is sufficient to send a simple message.
  • Many prominent software packages, such as WordPress blog software, depend on mail(), which is not an advantage per se, but it's a reason to have it available.

Advantages of the alternatives:

  • Support for SMTP authentication, which is absent in mail(). In SMTP authentication, a mail client proves its identity to an SMTP server with a user ID and password. Many SMTP servers, such as Lotus Domino's, can be configured to demand authentication to deter unauthorized use.
  • Programmers need not understand mail headers. Complex messages and attachments are handled easily, without complicated header strings.

An Invaluable Tool

The mail() function works well for relatively simple email tasks. Its hidden strength, though, is in the many software packages that use it. With the GA release of Zend Core, System i gets the power to host an expanded universe of commercial and open-source applications written in PHP.

Resources

www.php.net/mail
http://us2.php.net/manual/en/function.mail.php
Security Considerations for mail()
Zend Brings PHP to IBM's i5/OS (article by this author; introduction to PHP on System i)
Main page, Zend for i5/OS

Alan Seiden
  Alan Seiden founded Seiden Group to help IBM i shops design and implement high-performance web and mobile applications using PHP, DB2, RPG business logic and Zend Framework best practices. Alan and his team work closely with some of the best minds at both Zend and IBM on behalf of their clients.With a passion for open source and community, Alan co-developed the popular PHP Toolkit with IBM. He was one of the first Zend Framework certified engineers; co-founder of the NYC Zend Framework Meetup; charter member of IBM/COMMON's PHP Advisory Board; and a consultant for IBM's manual PHP: Zend Core for i5/OS. An award-winning speaker, Alan has been called "the performance guru of PHP on IBM i." He shares his expertise regularly at conferences and user groups such COMMON, ZendCon, the RPG & DB2 Summit, OMNI, the Northeast Users Group Conference, OCEAN and WMCPA. He also mentors other developers within the Club Seiden forum.In his spare time, Alan plays the trombone and studies and teaches the Feldenkrais Method® of Somatic Education.Subscribe to Alan’s monthly newsletter PHP on IBM i Tips.  Follow Alan on Twitter: @alanseiden and LinkedIn: www.linkedin.com/in/alanseidenMore on Alan
BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: