BookmarkSubscribeRSS Feed
BETO
Fluorite | Level 6

HI enclose is the script that will send a text to my sprint phone .once report runs  but I get a box asking for me to ALLOW  or DENY. How can I bypass ? if i select ALLOw it does send the text message

filename myemail EMAIL

to="##########@messaging.sprintpcs.com"

from="first.last@domain.com"

sender="first.last@domain.com"

subject="SAS ";

data _null_;

file myemail;

put "SAS ";

put "Seattle, Washington";

put "April 11-14";

run;

filename myemail clear;

The script below allows me to send an email with out having to select allow or deny. i change it up where my number would be a person email address. The a error I get is email is invalid. Thanks for your assistance on this

options

EMAILHOST=mailhost.business.email.net emailsys=smtp emailpw={ EMAILPORT=25;

filename mymail email to="##########@messaging.sprintpcs.com"

subject="Tuesday";

data _null_; file myemail;

put "This file is automated";

put "Please Let me know if anything looks wrong"

run;



1 REPLY 1
jakarman
Barite | Level 11

Beto,

The pop-up behavior is quit normal with Windows. The goal is help in preventing spamming/botnets.

Get into the microsoft questions: Avoiding Excessive Security Warnings when Sending Automated E-mail Messages 

When you configure an other mail-server. ...
SMTP has by default no security setup/layer most of it solved by the mail server and routers/firewalls.
At home it rather easy to receive mails from every mail-provider (pop3 mapi) sending mails however is mostly blocked. Using SMTP poort 25 is often filtered by their routers. Having a mailprovider offering secured sending mail you could use that. The required configuration settings may be slightly different (mapi and mapiport). An in house mailserver is able to configure to allow mail. Often it is called "bulkmail". Why this all? Same reason preventing spamming/botnets.  
  

---->-- ja karman --<-----

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 984 views
  • 3 likes
  • 2 in conversation