cancel
Showing results for 
Search instead for 
Did you mean: 

Full smtp_sender don't works ...

3,361

Hi
I always used the following structure on ASA9:

...
CALL xp_startsmtp('My Name<myname@domain.com>','localhost' );
...

But on SA12 it don't works (error 104) ! .... only works the semplified version (without angle bracket😞

...
CALL xp_startsmtp('myname@domain.com','localhost' );
...

Any suggestions ?

Accepted Solutions (1)

Accepted Solutions (1)

VolkerBarth
Contributor

Since you are using v9 so far, you seem to be faced with changed behaviour in newer versions:

AFAIK, xp_start_smtp() has been enhanced in v10 to include a bunch of additional parameters, and one of them is "smtp_sender_name". So I guess you can use "smtp_sender_name = My Name" to add the desired alias for the e-mail address, something like:

CALL xp_startsmtp( smtp_sender = 'myname@domain.com',
                   smtp_server = 'localhost',
                   smtp_sender_name = 'My Name' );

Answers (0)