Skip to main content

same To: and From: addresses in our fax to pdf emails

Posted by beedsley on Wed, 05/13/2009

Latest MTE TL server, Asterisk 1.4

We are getting the same To: and From: addresses in our fax to pdf emails

I see that we can change the content of the email via:

/usr/local/sbin/fax2pdf.sh

Do we adjust the From: email address there in this script, or did we just miss the spot in the gui to do this?

Whatever the case, can some one show us the syntax or location we need to change the From: address?


Submitted by eeman on Thu, 10/15/2009 Permalink

edit /usr/local/sbin/fax2pdf.sh

Submitted by j_kolter on Thu, 10/15/2009 Permalink

Thanks.

FYI to those in the future:

change this:

EMAILFROM=`echo $EMAILADDR | cut -d " " -f 1`

to this:

EMAILFROM=`echo user@domain.com | cut -d " " -f 1`

In reply to by eeman