Nik has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: sendmail issue
by sacked (Hermit) on May 28, 2004 at 16:15 UTC
    Use a different mail server:
    %mail = ( To => 'to@domain.com', From => 'from@otherdomain.com', # ... Smtp => 'some.other.mail.server', );

    --sacked
    A reply falls below the community's threshold of quality. You may see it by logging in.
Re: sendmail issue
by gman (Friar) on May 28, 2004 at 18:49 UTC
    As stated already you either need to find another SMTP server. Most providers have one for your use, that's unless you plan to use it for spamming. Your other options are to either run your own, provided you have a valid domain or rely on the user’s client using HTML syntex mailto:
      Thanks, you said that or rely on the user’s client using HTML syntex mailto: What did you eman by that?
      The Devil Is In The Details!